(self)
| 600 | self.assertDictEqual(handler.environ, expected) |
| 601 | |
| 602 | def testCGIEnviron(self): |
| 603 | h = BaseCGIHandler(None,None,None,{}) |
| 604 | h.setup_environ() |
| 605 | for key in 'wsgi.url_scheme', 'wsgi.input', 'wsgi.errors': |
| 606 | self.assertIn(key, h.environ) |
| 607 | |
| 608 | def testScheme(self): |
| 609 | h=TestHandler(HTTPS="on"); h.setup_environ() |
nothing calls this directly
no test coverage detected