Sha256: 5864185e677eb85feaa0e141a3383db2fce860c82b2ec5760cef264ee99412f9

Contents?: true

Size: 598 Bytes

Versions: 15

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 'rakuna'

# 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

15 entries across 15 versions & 1 rubygems

Version Path
rakuna-1.0.1 spec/spec_helper.rb
rakuna-1.0.0 spec/spec_helper.rb
rakuna-0.7.5 spec/spec_helper.rb
rakuna-0.7.4 spec/spec_helper.rb
rakuna-0.7.3 spec/spec_helper.rb
rakuna-0.7.2 spec/spec_helper.rb
rakuna-0.7.1 spec/spec_helper.rb
rakuna-0.7.0 spec/spec_helper.rb
rakuna-0.6.0 spec/spec_helper.rb
rakuna-0.5.0 spec/spec_helper.rb
rakuna-0.4.0 spec/spec_helper.rb
rakuna-0.3.0 spec/spec_helper.rb
rakuna-0.2.0 spec/spec_helper.rb
rakuna-0.1.1 spec/spec_helper.rb
rakuna-0.1.0 spec/spec_helper.rb