Sha256: 978a00b46be3fbcb0b4a142ef991dd85eb9fdefe3bcbe6f88525aef3793410cc

Contents?: true

Size: 1.09 KB

Versions: 15

Compression:

Stored size: 1.09 KB

Contents

ENV['RAILS_ENV'] = 'test'
ENV['RACK_ENV'] = 'test'

ENV['TEST_GEM'] = 'gem'   # enable SknSettings Gem Mode Testing

require 'bundler/setup'

require 'simplecov'

SimpleCov.start do
  # any custom configs like groups and filters can be here at a central place
  add_filter '/spec/'
end

require 'skn_utils'
require 'rspec'

# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  Kernel.srand config.seed

  config.order = :random
  config.color = true
  config.tty = false
  config.profile_examples = 10

  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  # config.disable_monkey_patching!  # -- breaks rspec runtime
  config.warnings = true

  if config.files_to_run.one?
    config.formatter = :documentation
  else
    config.formatter = :progress  #:html, :textmate, :documentation
  end

  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
    expectations.syntax = :expect
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end
  
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
skn_utils-5.4.1 spec/spec_helper.rb
skn_utils-5.4.0 spec/spec_helper.rb
skn_utils-5.3.0 spec/spec_helper.rb
skn_utils-5.2.0 spec/spec_helper.rb
skn_utils-5.1.3 spec/spec_helper.rb
skn_utils-5.1.2 spec/spec_helper.rb
skn_utils-5.1.1 spec/spec_helper.rb
skn_utils-5.1.0 spec/spec_helper.rb
skn_utils-5.0.2 spec/spec_helper.rb
skn_utils-5.0.1 spec/spec_helper.rb
skn_utils-5.0.0 spec/spec_helper.rb
skn_utils-4.0.4 spec/spec_helper.rb
skn_utils-4.0.3 spec/spec_helper.rb
skn_utils-4.0.1 spec/spec_helper.rb
skn_utils-4.0.0 spec/spec_helper.rb