Commit 2d8084f2 authored by Dirk Reyes's avatar Dirk Reyes

Added unit tests

parent 12e3c5a1
from django.test import TestCase
# Create your tests here.
class CheckIngredientsList(TestCase):
def check_if_ingredients_list_views(self):
response= self.client.get('ingredients/list/')
self.assertTemplateUsed(response, "ingredients_list.html")
class CheckIngredientsDetail(TestCase):
def check_if_ingredients_detail_views(self):
response= self.client.get('ingredients/detail/')
self.assertTemplateUsed(response, "ingredients_detail.html")
class CheckIngredientsUpdateForm(TestCase):
def check_if_ingredients_update_form_views(self):
response= self.client.get('ingredients/update_form/')
self.assertTemplateUsed(response, "ingredients_update_form.html")
class CheckIngredientsCreateForm(TestCase):
def check_if_ingredients_create_form_views(self):
response= self.client.get('ingredients/create_form/')
self.assertTemplateUsed(response, "ingredients_create_form.html")
class CheckRecipesList(TestCase):
def check_if_recipes_list_views(self):
response= self.client.get('recipes/list/')
self.assertTemplateUsed(response, "recipes_list.html")
class CheckRecipesDetail(TestCase):
def check_if_recipes_detail_views(self):
response= self.client.get('recipes/detail/')
self.assertTemplateUsed(response, "recipes_detail.html")
class CheckRecipesUpdateForm(TestCase):
def check_if_recipes_update_form_views(self):
response= self.client.get('recipes/update_form/')
self.assertTemplateUsed(response, "recipes_update_form.html")
class CheckRecipesCreateForm(TestCase):
def check_if_recipes_create_form_views(self):
response= self.client.get('recipes/create_form/')
self.assertTemplateUsed(response, "recipes_create_form.html")
class CheckOrdersList(TestCase):
def check_if_orders_list_views(self):
response= self.client.get('orders/list/')
self.assertTemplateUsed(response, "orders_list.html")
class CheckOrdersDetail(TestCase):
def check_if_orders_detail_views(self):
response= self.client.get('orders/detail/')
self.assertTemplateUsed(response, "orders_detail.html")
class CheckOrdersUpdateForm(TestCase):
def check_if_orders_update_form_views(self):
response= self.client.get('orders/update_form/')
self.assertTemplateUsed(response, "orders_update_form.html")
class CheckOrdersCreateForm(TestCase):
def check_if_orders_create_form_views(self):
response= self.client.get('orders/create_form/')
self.assertTemplateUsed(response, "orders_create_form.html")
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