David Chelimsky wrote:
>
> Looks like action_pack calls render twice (the 2nd time in
> action_controller/metal/implicit_render.rb:10:in `default_render'), so
> we've got to stub the :render call twice:
>
> page = double('page')
> controller.stub(:render)
> controller.stub(:render).with(:update
Hi.
Is there any matcher for test file content, anything like
file("/path/to/file.txt").should contain("File content")
or
file("/path/to/file.txt").content.should == "File content"
or
file_content("/path/to/file.txt").should == "File content"
or something else?
Jarl
Yes, that certainly did the trick...
I use
File.read("/path/to/file").should == "content"
Thanks.
2011/12/20 Michael Guterl :
> On Tue, Dec 20, 2011 at 5:51 AM, Jarl Friis wrote:
>> Hi.
>>
>> Is there any matcher for test file content, anything li