spec/spec_helper.rb in gemline-0.3.2 vs spec/spec_helper.rb in gemline-0.4.0
- old
+ new
@@ -1,5 +1,12 @@
+if RUBY_VERSION >= '1.9'
+ require 'simplecov'
+ SimpleCov.start do
+ add_filter "/spec/"
+ end
+end
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'rubygems'
require 'gemline'
@@ -14,10 +21,10 @@
def stub_rubygems_json_output
Dir.glob(File.join(File.dirname(__FILE__),'samples', '*.json')).each do |f|
gem_name = $1 if f =~ /\/([\w\-]+).json$/
- Gemline.stub!(:get_rubygem_json).with(gem_name).and_return(IO.read(f))
+ Gemline.stub(:get_rubygem_json).with(gem_name).and_return(IO.read(f))
end
end
def grab_io
@stdout = StringIO.new; $stdout = @stdout;