(self)
| 109 | response.read() |
| 110 | |
| 111 | def test_invalid_get_response(self): |
| 112 | self.client.request("GET", "/spam") |
| 113 | response = self.client.getresponse() |
| 114 | |
| 115 | self.assertEqual(response.status, 404) |
| 116 | self.assertEqual(response.getheader("Content-type"), "text/plain") |
| 117 | |
| 118 | response.read() |
| 119 | |
| 120 | def test_lambda(self): |
| 121 | """Test that lambda functionality stays the same. The output produced |
nothing calls this directly
no test coverage detected