Commit 120a0c49 by Jon Frisby

Make this mock more representative of actual rake output.

parent fba0ca0a
...@@ -19,7 +19,7 @@ describe AnnotateRoutes do ...@@ -19,7 +19,7 @@ describe AnnotateRoutes do
before(:each) do before(:each) do
File.should_receive(:exists?).with("config/routes.rb").and_return(true) File.should_receive(:exists?).with("config/routes.rb").and_return(true)
AnnotateRoutes.should_receive(:`).with("rake routes").and_return("bad line\ngood line") AnnotateRoutes.should_receive(:`).with("rake routes").and_return("(in /bad/line)\ngood line")
File.should_receive(:open).with("config/routes.rb", "wb").and_yield(mock_file) File.should_receive(:open).with("config/routes.rb", "wb").and_yield(mock_file)
AnnotateRoutes.should_receive(:puts).with("Route file annotated.") AnnotateRoutes.should_receive(:puts).with("Route file annotated.")
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment