Sha256: bbc38c54151be59570eb6fb4fe4131e86b582dec3f898af61598272a886f6591

Contents?: true

Size: 549 Bytes

Versions: 5

Compression:

Stored size: 549 Bytes

Contents

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start

require 'bh'

Dir['./spec/shared/**/*.rb'].each {|f| require f}
Dir['./spec/support/**/*.rb'].each {|f| require f}

RSpec.configure do |config|
  config.order = 'random'
  config.run_all_when_everything_filtered = false
  config.alias_it_should_behave_like_to :all_tests_pass_for, ''
  config.alias_it_should_behave_like_to :all_tests_pass_with, 'with'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bh-1.3.4 spec/spec_helper.rb
bh-1.3.3 spec/spec_helper.rb
bh-1.3.1 spec/spec_helper.rb
bh-1.3.0 spec/spec_helper.rb
bh-1.2.0 spec/spec_helper.rb