(self)
| 588 | self.assertDictEqual(handler.environ, expected) |
| 589 | |
| 590 | def testCGIEnviron(self): |
| 591 | h = BaseCGIHandler(None,None,None,{}) |
| 592 | h.setup_environ() |
| 593 | for key in 'wsgi.url_scheme', 'wsgi.input', 'wsgi.errors': |
| 594 | self.assertIn(key, h.environ) |
| 595 | |
| 596 | def testScheme(self): |
| 597 | h=TestHandler(HTTPS="on"); h.setup_environ() |
nothing calls this directly
no test coverage detected