1description( 2"This test checks that cookies are correctly set using Max-Age." 3); 4 5clearAllCookies(); 6 7debug("Check that setting a simple cookie works."); 8cookiesShouldBe("test=foobar; Max-Age=90000000", "test=foobar"); 9clearCookies(); 10 11debug("Check setting a cookie that timed out."); 12cookiesShouldBe("test2=foobar; Max-Age=0", ""); 13clearCookies(); 14 15successfullyParsed = true; 16