You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_offer.py 212B

12345678
  1. from oscar.test.testcases import WebTestCase
  2. class TestTheOfferListPage(WebTestCase):
  3. def test_exists(self):
  4. response = self.app.get('/offers/')
  5. self.assertEqual(200, response.status_code)