Sha256: dad2c55f9c38f02aea32a38c800b0eb6a3beddff8c2312e9e1fe4aa836b5e416
Contents?: true
Size: 622 Bytes
Versions: 1
Compression:
Stored size: 622 Bytes
Contents
require 'simplecov' require 'codeclimate-test-reporter' require 'coveralls' Coveralls.wear! SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new [ SimpleCov::Formatter::HTMLFormatter, CodeClimate::TestReporter::Formatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start do add_filter '/spec/' end require 'rspec' require 'rambling-trie' ::SPEC_ROOT = File.dirname __FILE__ RSpec.configure do |config| config.color = true config.tty = true config.formatter = :documentation config.order = :random config.run_all_when_everything_filtered = true config.raise_errors_for_deprecations! end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rambling-trie-0.9.3 | spec/spec_helper.rb |