Sha256: 43ef882b7a5ac5a37781604ba105aa2d58accabb8070440f06354b23ddbb0bb7

Contents?: true

Size: 538 Bytes

Versions: 6

Compression:

Stored size: 538 Bytes

Contents

# encoding: utf-8

$:.unshift File.expand_path('../lib', __FILE__)

# Use simplecov test coverage
require 'simplecov'
SimpleCov.start

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

RSpec.configure do |conf|
  conf.color_enabled = true
  conf.treat_symbols_as_metadata_keys_with_true_values = true

  conf.expect_with :rspec, :stdlib
  conf.mock_with :rspec

  conf.fail_fast = true
  conf.filter_run :focus  => true
  conf.filter_run_excluding :broken => true
  conf.run_all_when_everything_filtered = true
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubymisc-0.0.3.3 spec/spec_helper.rb
rubymisc-0.0.3.2 spec/spec_helper.rb
rubymisc-0.0.3.1 spec/spec_helper.rb
rubymisc-0.0.3 spec/spec_helper.rb
rubymisc-0.0.2 spec/spec_helper.rb
rubymisc-0.0.1 spec/spec_helper.rb