Sha256: 5e243ab05f40686afb678119e5c800a2872e245d844067d9c91f75628865ddfb

Contents?: true

Size: 614 Bytes

Versions: 10

Compression:

Stored size: 614 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 "best_practice_project"

# 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

10 entries across 10 versions & 1 rubygems

Version Path
best_practice_project-0.0.10 spec/spec_helper.rb
best_practice_project-0.0.9 spec/spec_helper.rb
best_practice_project-0.0.8 spec/spec_helper.rb
best_practice_project-0.0.7 spec/spec_helper.rb
best_practice_project-0.0.6 spec/spec_helper.rb
best_practice_project-0.0.5 spec/spec_helper.rb
best_practice_project-0.0.4 spec/spec_helper.rb
best_practice_project-0.0.3 spec/spec_helper.rb
best_practice_project-0.0.2 spec/spec_helper.rb
best_practice_project-0.0.1 spec/spec_helper.rb