Sha256: d287ce0007b4b55374c7a2b0865606aad062ad0c9af20174eebf267fdcac2aaa

Contents?: true

Size: 622 Bytes

Versions: 6

Compression:

Stored size: 622 Bytes

Contents

require 'simplecov'

module SimpleCov::Configuration
  def clean_filters
    @filters = []
  end
end

SimpleCov.configure do
  clean_filters
  load_adapter 'test_frameworks'
end

ENV["COVERAGE"] && SimpleCov.start do
  add_filter "/.rvm/"
end
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require 'rspec'
require 'factory_girl_fixtures_template'

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

RSpec.configure do |config|

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
factory_girl_fixtures_template-1.1.0 spec/spec_helper.rb
factory_girl_fixtures_template-1.0.4 spec/spec_helper.rb
factory_girl_fixtures_template-1.0.3 spec/spec_helper.rb
factory_girl_fixtures_template-1.0.2 spec/spec_helper.rb
factory_girl_fixtures_template-1.0.1 spec/spec_helper.rb
factory_girl_fixtures_template-1.0.0 spec/spec_helper.rb