spec/spec_helper.rb in messages_dictionary-0.1.3.2 vs spec/spec_helper.rb in messages_dictionary-1.0.0
- old
+ new
@@ -1,6 +1,9 @@
-require "codeclimate-test-reporter"
-CodeClimate::TestReporter.start
+require 'simplecov'
+SimpleCov.start do
+ add_filter "/spec/"
+ add_filter "/bin/"
+end
$LOAD_PATH << File.expand_path('../../../lib', __FILE__)
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
require 'messages_dictionary'
\ No newline at end of file