From 00cd3ecc44a6c6d29565c95cd5173c8e5de35537 Mon Sep 17 00:00:00 2001 From: Marin Jankovski Date: Tue, 6 May 2014 09:57:08 +0200 Subject: Use stub in testing. --- features/steps/project/wiki.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'features') diff --git a/features/steps/project/wiki.rb b/features/steps/project/wiki.rb index 4195ce5b28c..3244a5a05af 100644 --- a/features/steps/project/wiki.rb +++ b/features/steps/project/wiki.rb @@ -96,8 +96,9 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps end And 'I click on existing image link' do - Gollum::Wiki.any_instance.should_receive(:file).with("image.jpg", "master", true).and_return(Gollum::File.new(wiki.wiki)) - Gollum::File.any_instance.should_receive(:mime_type).and_return("image/jpeg") + file = Gollum::File.new(wiki.wiki) + Gollum::Wiki.any_instance.stub(:file).with("image.jpg", "master", true).and_return(file) + Gollum::File.any_instance.stub(:mime_type).and_return("image/jpeg") page.should have_link('image', href: "image.jpg") click_on "image" end -- cgit v1.2.3