spec/spec_helper.rb in rambling-trie-0.9.3 vs spec/spec_helper.rb in rambling-trie-1.0.0
- old
+ new
@@ -2,11 +2,11 @@
require 'codeclimate-test-reporter'
require 'coveralls'
Coveralls.wear!
-SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new [
+SimpleCov.formatters = [
SimpleCov::Formatter::HTMLFormatter,
CodeClimate::TestReporter::Formatter,
Coveralls::SimpleCov::Formatter
]
@@ -24,5 +24,11 @@
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'