(self)
| 606 | self.assertIn(key, h.environ) |
| 607 | |
| 608 | def testScheme(self): |
| 609 | h=TestHandler(HTTPS="on"); h.setup_environ() |
| 610 | self.assertEqual(h.environ['wsgi.url_scheme'],'https') |
| 611 | h=TestHandler(); h.setup_environ() |
| 612 | self.assertEqual(h.environ['wsgi.url_scheme'],'http') |
| 613 | |
| 614 | def testAbstractMethods(self): |
| 615 | h = BaseHandler() |
nothing calls this directly
no test coverage detected