spec/browser_authentication_spec.rb in celerity-0.9.1 vs spec/browser_authentication_spec.rb in celerity-0.9.2

- old
+ new

@@ -3,11 +3,11 @@ describe "Browser" do describe "#credentials=" do it "sets the basic authentication credentials" do browser.goto(WatirSpec.host + "/authentication") - browser.text.should_not include("ok") + browser.text.should_not include("ok") browser.credentials = "foo:bar" browser.goto(WatirSpec.host + "/authentication") browser.text.should include("ok") end