1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: clean spec_helper.rb
- remove call to test coverage tools
- do not overload loadpath
- do not require explicitly rubygems
Author: Cédric Boutillier <boutil@debian.org>
Forwarded: not-needed
Last-Update: 2014-06-23
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,17 +1,3 @@
-require 'simplecov'
-require 'coveralls'
-
-SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
- SimpleCov::Formatter::HTMLFormatter,
- Coveralls::SimpleCov::Formatter]
-
-SimpleCov.start do
- add_filter "/spec/"
-end
-
-$:.push File.expand_path("../../lib", __FILE__)
-
-require 'rubygems'
require 'rspec'
require 'dependor'
|