Sha256: bfe6fc46b59fb484b73a42d37ddfd75f9eca1f88162d98fb0cd9b3f3207b213c

Contents?: true

Size: 619 Bytes

Versions: 4

Compression:

Stored size: 619 Bytes

Contents

require 'simplecov'

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

SimpleCov.configure do
  clean_filters
  load_profile '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 'sucker_punch-backgroundable'

# 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

4 entries across 4 versions & 1 rubygems

Version Path
sucker_punch-backgroundable-0.3.1 spec/spec_helper.rb
sucker_punch-backgroundable-0.3.0 spec/spec_helper.rb
sucker_punch-backgroundable-0.2.0 spec/spec_helper.rb
sucker_punch-backgroundable-0.1.0 spec/spec_helper.rb