Sha256: c1f2e4b367f314840204852a9d362a768f34bb53a87608bc9a6af8d981d1339e
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
ENV['RAILS_ENV'] ||= 'test' require 'skn_utils' require 'skn_utils/exploring/commander' require 'skn_utils/exploring/action_service' require 'skn_utils/exploring/configuration' require 'rspec' require 'psych' require 'json' # Shared Examples and Support Routines Dir["./spec/support/**/*.rb"].sort.each { |f| require f} # 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.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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
skn_utils-3.0.2 | spec/spec_helper.rb |
skn_utils-3.0.1 | spec/spec_helper.rb |
skn_utils-3.0.0 | spec/spec_helper.rb |