2008-05-12 03:58:20 +00:00
|
|
|
require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
|
|
|
|
|
|
|
|
describe "visits" do
|
|
|
|
before do
|
|
|
|
@session = Webrat::TestSession.new
|
2008-05-12 04:23:37 +00:00
|
|
|
@session.response_body = "Hello world"
|
2008-05-12 03:58:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should use get" do
|
2008-07-25 23:11:56 +00:00
|
|
|
@session.should_receive(:get).with("/", {})
|
2008-05-12 03:58:20 +00:00
|
|
|
@session.visits("/")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should assert valid response" do
|
|
|
|
@session.response_code = 404
|
|
|
|
lambda { @session.visits("/") }.should raise_error
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should require a visit before manipulating page" do
|
|
|
|
lambda { @session.fills_in "foo", :with => "blah" }.should raise_error
|
|
|
|
end
|
|
|
|
end
|
2008-08-20 08:35:57 +00:00
|
|
|
|
|
|
|
describe "visits with referer" do
|
|
|
|
before do
|
|
|
|
@session = Webrat::TestSession.new
|
|
|
|
@session.instance_variable_set(:@current_url, "/old_url")
|
|
|
|
@session.response_body = "Hello world"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should use get with referer header" do
|
|
|
|
@session.should_receive(:get).with("/", {}, {"HTTP_REFERER" => "/old_url"})
|
|
|
|
@session.visits("/")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|