(self)
| 47 | |
| 48 | class BrowserTest(unittest.TestCase): |
| 49 | def testCookies(self): |
| 50 | b = app.browser() |
| 51 | b.open("http://0.0.0.0/setcookie?x=1&y=2") |
| 52 | b.open("http://0.0.0.0/cookie") |
| 53 | self.assertEqual(b.text, "x,y") |
| 54 | |
| 55 | def testNotfound(self): |
| 56 | b = app.browser() |