Searched refs:checkAppURI (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Lib/test/ |
D | test_wsgiref.py | 335 def checkAppURI(self,uri,**kw): member in UtilityTests 425 self.checkAppURI("http://127.0.0.1/") 426 self.checkAppURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam") 427 self.checkAppURI("http://127.0.0.1/sp%E4m", SCRIPT_NAME="/sp\xe4m") 428 self.checkAppURI("http://spam.example.com:2071/", 430 self.checkAppURI("http://spam.example.com/", 432 self.checkAppURI("http://127.0.0.1/", 434 self.checkAppURI("https://127.0.0.1/", HTTPS="on") 435 self.checkAppURI("http://127.0.0.1:8000/", SERVER_PORT="8000",
|