spec/spec_helper.rb in gemline-0.4.1 vs spec/spec_helper.rb in gemline-0.4.2
- old
+ new
@@ -21,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))
+ allow(Gemline).to receive(:get_rubygem_json).with(gem_name).and_return(IO.read(f))
end
end
def grab_io
@stdout = StringIO.new; $stdout = @stdout;