Commit 15db51b0 authored by Alex Bernard Francia's avatar Alex Bernard Francia

Fixed missing ingredients_list test case.

parent 6d5b5fd7
......@@ -23,6 +23,11 @@ class HomePageTest(TestCase):
self.assertTemplateUsed(response, 'home_page.html')
class IngredientsListTest(TestCase):
def test_ingredients_list_page_returns_correct_html(self):
response = self.client.get('/ingredients/list')
self.assertTemplateUsed(response, 'ingredients_list.html')
class IngredientsDetailTest(TestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment