Sha256: 91c6ec7cab468da1649c0873da48bf13eb9f97e520584fd7cd148cf255e8f9e3

Contents?: true

Size: 598 Bytes

Versions: 5

Compression:

Stored size: 598 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 'k-tree'

# 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

5 entries across 5 versions & 1 rubygems

Version Path
k-tree-0.0.8 spec/spec_helper.rb
k-tree-0.0.7 spec/spec_helper.rb
k-tree-0.0.6 spec/spec_helper.rb
k-tree-0.0.3 spec/spec_helper.rb
k-tree-0.0.2 spec/spec_helper.rb