(self)
| 594 | self.assertIn(key, h.environ) |
| 595 | |
| 596 | def testScheme(self): |
| 597 | h=TestHandler(HTTPS="on"); h.setup_environ() |
| 598 | self.assertEqual(h.environ['wsgi.url_scheme'],'https') |
| 599 | h=TestHandler(); h.setup_environ() |
| 600 | self.assertEqual(h.environ['wsgi.url_scheme'],'http') |
| 601 | |
| 602 | def testAbstractMethods(self): |
| 603 | h = BaseHandler() |
nothing calls this directly
no test coverage detected