Fix spec to follow behavior change

This commit is contained in:
uu59 2014-07-03 14:56:23 +09:00
parent b9fa5d3a7d
commit 6bc7f39944

View File

@ -86,7 +86,7 @@ describe Plugin do
end
context "system command error" do
before { plugin.should_receive(:system).and_return(false) }
before { plugin.should_receive(:system).at_least(1).and_return(false) }
subject { expect { plugin.install! } }
it "raise GemError" do