spec/spec_helper.rb in trackerific-0.6.2 vs spec/spec_helper.rb in trackerific-0.7.0
- old
+ new
@@ -1,16 +1,9 @@
-# Code coverage
-require 'simplecov'
-SimpleCov.start
+ENV['RAILS_ENV'] = 'test'
require 'rubygems'
require 'bundler/setup'
require 'trackerific'
-require 'rspec_multi_matchers'
+require 'fakeweb'
# load all the support files
Dir["spec/support/**/*.rb"].each { |f| require File.expand_path(f) }
-require 'rspec/rails' # this has to be loaded after the support files
-
-RSpec.configure do |config|
- config.mock_with :rspec
-end