Exemplo n.º 1
0
    def test_assert_status(self):
        """ Test that assertStatus returns True if they match, False otherwise """
        resp = HttpResponse(self.mock_response)
        self.assertTrue(resp.assertStatus(200))
        self.assertTrue(resp.assertNotStatus(400))

        self.assertFalse(resp.assertStatus(400))
        self.assertFalse(resp.assertNotStatus(200))