1 description( 2 "This test checks that mulitple cookies are correctly set." 3 ); 4 5 clearAllCookies(); 6 7 debug("Check setting several cookies without clearing."); 8 cookiesShouldBe("test=foobar;", "test=foobar"); 9 cookiesShouldBe("test2=foobar;", "test=foobar; test2=foobar"); 10 cookiesShouldBe("test3=foobar;", "test=foobar; test2=foobar; test3=foobar"); 11 clearCookies(); 12 13 successfullyParsed = true; 14