Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI 40 Project 1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kevin Daniel Sibug
CSCI 40 Project 1
Commits
1f073eb9
Commit
1f073eb9
authored
Mar 21, 2020
by
Kevin Sibug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added unit tests for views
parent
e2288c49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
1 deletion
+51
-1
tests.py
thegoodplace/froyo/tests.py
+51
-1
No files found.
thegoodplace/froyo/tests.py
View file @
1f073eb9
from
django.test
import
TestCase
from
django.test
import
TestCase
#Ingedients Test
class
IngredientsListTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/ingredients/list/'
)
self
.
assertTemplateUsed
(
response
,
'ingredients_list.html'
)
class
IngredientsDetailTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/ingredients/detail/'
)
self
.
assertTemplateUsed
(
response
,
'ingredients_detail.html'
)
class
IngredientsUpdateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/ingredients/update_form/'
)
self
.
assertTemplateUsed
(
response
,
'ingredients_update_form.html'
)
class
IngredientsCreateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/ingredients/create_form/'
)
self
.
assertTemplateUsed
(
response
,
'ingredients_create_form.html'
)
#Recipes Test
class
RecipesListTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/recipes/list/'
)
self
.
assertTemplateUsed
(
response
,
'recipes_list.html'
)
class
RecipesDetailTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/recipes/detail/'
)
self
.
assertTemplateUsed
(
response
,
'recipes_detail.html'
)
class
RecipesUpdateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/recipes/update_form/'
)
self
.
assertTemplateUsed
(
response
,
'recipes_update_form.html'
)
class
RecipesCreateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/recipes/create_form/'
)
self
.
assertTemplateUsed
(
response
,
'recipes_create_form.html'
)
#Orders Test
class
OrdersListTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/orders/list/'
)
self
.
assertTemplateUsed
(
response
,
'orders_list.html'
)
class
OrdersDetailTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/orders/detail/'
)
self
.
assertTemplateUsed
(
response
,
'orders_detail.html'
)
class
OrdersUpdateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/orders/update_form/'
)
self
.
assertTemplateUsed
(
response
,
'orders_update_form.html'
)
class
OrdersCreateTest
(
TestCase
):
def
test_can_get_create_template
(
self
):
response
=
self
.
client
.
get
(
'/orders/create_form/'
)
self
.
assertTemplateUsed
(
response
,
'orders_create_form.html'
)
# Create your tests here.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment