spec bug fix

This commit is contained in:
Dennis Rogenius 2009-11-22 18:58:43 +01:00
parent ae5c86c382
commit 5b73298bed
1 changed files with 3 additions and 3 deletions

View File

@ -7,12 +7,12 @@ describe Capybara::SaveAndOpenPage do
before do
@time = Time.new.strftime("%Y%m%d%H%M%S")
name = "capybara-#{@time}.html"
@name = "capybara-#{@time}.html"
@temp_file = mock("FILE")
@temp_file.stub!(:write)
@temp_file.stub!(:close)
@temp_file.stub!(:path).and_return(name)
@temp_file.stub!(:path).and_return(@name)
File.should_receive(:exist?).and_return true
File.should_receive(:new).and_return @temp_file
@ -36,7 +36,7 @@ describe Capybara::SaveAndOpenPage do
end
it "should open the file in the browser" do
Capybara::SaveAndOpenPage.should_receive(:open_in_browser).with(name)
Capybara::SaveAndOpenPage.should_receive(:open_in_browser).with(@name)
Capybara::SaveAndOpenPage.save_and_open_page @html
end
end