Sha256: 7e5f8b226b1e59c80b90db13e2adb5facc2a308a5f3e94e69cb2edb4e07b9275

Contents?: true

Size: 819 Bytes

Versions: 1

Compression:

Stored size: 819 Bytes

Contents

require 'simplecov'
require 'codeclimate-test-reporter'
require 'coveralls'

Coveralls.wear!

SimpleCov.formatters = [
  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

require 'support/config'
require 'support/shared_examples/a_compressable_trie'
require 'support/shared_examples/a_serializable_trie'
require 'support/shared_examples/a_serializer'
require 'support/shared_examples/a_trie_data_structure'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rambling-trie-1.0.0 spec/spec_helper.rb