require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe "save_and_open_page" do before do @session = Webrat::TestSession.new @session.response_body = <<-HTML

Hello world

HTML File.stubs(:exist?).returns(true) Time.stubs(:now).returns(1234) Webrat::Page.any_instance.stubs(:open_in_browser) @file_handle = mock() File.stubs(:open).with(filename, 'w').yields(@file_handle) @file_handle.stubs(:write) end it "should rewrite css rules" do @file_handle.expects(:write).with do |html| html =~ %r|#{@session.doc_root}/stylesheets/foo.css|s end @session.save_and_open_page end it "should rewrite image paths" do @file_handle.expects(:write).with do |html| html =~ %r|#{@session.doc_root}/images/bar.png|s end @session.save_and_open_page end it "should open the temp file in a browser" do Webrat::Page.any_instance.expects(:open_in_browser).with(filename) @session.save_and_open_page end def filename File.expand_path("./webrat-#{Time.now}.html") end end