(self)
| 165 | self.assertRaises(ValueError, app.do_request, req, '*', False) |
| 166 | |
| 167 | def test_paste_testing_variables(self): |
| 168 | app = self.call_FUT(check='1') |
| 169 | req = Request.blank('/') |
| 170 | resp = app.do_request(req, '*', False) |
| 171 | self.assertEqual(resp.check, '1') |
| 172 | |
| 173 | |
| 174 | class TestCookies(unittest.TestCase): |
nothing calls this directly
no test coverage detected