Sha256: 3c1f6b576dfaa1868fd526f66d245946c3c8cd110b5865dd34a7d3b757a4a21d

Contents?: true

Size: 406 Bytes

Versions: 2

Compression:

Stored size: 406 Bytes

Contents

require 'simplecov'
SimpleCov.start do
  add_filter '/spec/'
end

require 'rspec'
require 'rambling-trie'
::SPEC_ROOT = File.dirname(__FILE__)

RSpec.configure do |config|
  config.order = :random
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rambling-trie-0.6.1 spec/spec_helper.rb
rambling-trie-0.6.0 spec/spec_helper.rb