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