adapt wording of CookieJar specs (#179)

This commit is contained in:
Niklas Baumstark 2011-10-06 15:07:45 +02:00
parent 341306f72a
commit f76bd7020f
1 changed files with 3 additions and 3 deletions

View File

@ -16,17 +16,17 @@ describe Capybara::Driver::Webkit::CookieJar do
subject { Capybara::Driver::Webkit::CookieJar.new(browser) } subject { Capybara::Driver::Webkit::CookieJar.new(browser) }
describe "#[]" do describe "#[]" do
it "should return the right cookie value for every given domain/path" do it "returns the right cookie value for every given domain/path" do
subject["cookie1", "example.org"].should == "1" subject["cookie1", "example.org"].should == "1"
subject["cookie1", "www.facebook.com"].should == "3" subject["cookie1", "www.facebook.com"].should == "3"
subject["cookie2", "sub1.example.org"].should == "4" subject["cookie2", "sub1.example.org"].should == "4"
end end
it "should not return cookie from other domain" do it "does not return a cookie from other domain" do
subject["cookie2", "www.example.org"].should == nil subject["cookie2", "www.example.org"].should == nil
end end
it "should handle path precedence correctly" do it "respects path precedence rules" do
subject["cookie1", "www.example.org"].should == "1" subject["cookie1", "www.example.org"].should == "1"
subject["cookie1", "www.example.org", "/dir1/123"].should == "2" subject["cookie1", "www.example.org", "/dir1/123"].should == "2"
end end