(self)
| 100 | return Application() |
| 101 | |
| 102 | def test_fetch_segment(self): |
| 103 | path = "/path" |
| 104 | response = self.fetch(path) |
| 105 | self.assertEqual(response.request.url, self.get_url(path)) |
| 106 | |
| 107 | def test_fetch_full_http_url(self): |
| 108 | # Ensure that self.fetch() recognizes absolute urls and does |