Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI 40 Midterm Project
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
Li Niko M. Arceo
CSCI 40 Midterm Project
Commits
5d77ac55
Commit
5d77ac55
authored
Mar 12, 2020
by
Li Niko M. Arceo
🦈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
All the tests are good already
parent
b7f66b5c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
48 deletions
+48
-48
tests.cpython-38.pyc
froyo/__pycache__/tests.cpython-38.pyc
+0
-0
tests.py
froyo/tests.py
+48
-48
No files found.
froyo/__pycache__/tests.cpython-38.pyc
View file @
5d77ac55
No preview for this file type
froyo/tests.py
View file @
5d77ac55
...
@@ -7,76 +7,76 @@ class HomePageTest(TestCase):
...
@@ -7,76 +7,76 @@ class HomePageTest(TestCase):
self
.
assertTemplateUsed
(
response
,
'home.html'
)
self
.
assertTemplateUsed
(
response
,
'home.html'
)
#ingredients tests
#ingredients tests
#
class IngredientsListTest(TestCase):
class
IngredientsListTest
(
TestCase
):
#
def test_uses_ingredients_list_template(self):
def
test_uses_ingredients_list_template
(
self
):
#
response = self.client.get('/ingredients/list')
response
=
self
.
client
.
get
(
'/ingredients/list'
)
#
self.assertTemplateUsed(response,'ingredients_list.html')
self
.
assertTemplateUsed
(
response
,
'ingredients_list.html'
)
#
class IngredientsDetailTest(TestCase):
class
IngredientsDetailTest
(
TestCase
):
#
def test_uses_ingredients_detail_template(self):
def
test_uses_ingredients_detail_template
(
self
):
#
response = self.client.get('/ingredients/detail')
response
=
self
.
client
.
get
(
'/ingredients/detail'
)
#
self.assertTemplateUsed(response,'ingredients_detail.html')
self
.
assertTemplateUsed
(
response
,
'ingredients_detail.html'
)
#
class IngredientsUpdateTest(TestCase):
class
IngredientsUpdateTest
(
TestCase
):
#
def test_uses_ingredients_update_template(self):
def
test_uses_ingredients_update_template
(
self
):
#
response = self.client.get('/ingredients/update')
response
=
self
.
client
.
get
(
'/ingredients/update'
)
#
self.assertTemplateUsed(response,'ingredients_update_form.html')
self
.
assertTemplateUsed
(
response
,
'ingredients_update_form.html'
)
#
class IngredientsCreateTest(TestCase):
class
IngredientsCreateTest
(
TestCase
):
#
def test_uses_ingredients_create_template(self):
def
test_uses_ingredients_create_template
(
self
):
#
response = self.client.get('/ingredients/create')
response
=
self
.
client
.
get
(
'/ingredients/create'
)
#
self.assertTemplateUsed(response,'ingredients_create_form.html')
self
.
assertTemplateUsed
(
response
,
'ingredients_create_form.html'
)
#recipes tests
#recipes tests
#
class RecipesListTest(TestCase):
class
RecipesListTest
(
TestCase
):
#
def test_uses_recipes_list_template(self):
def
test_uses_recipes_list_template
(
self
):
#
response = self.client.get('/recipes/list')
response
=
self
.
client
.
get
(
'/recipes/list'
)
#
self.assertTemplateUsed(response,'recipes_list.html')
self
.
assertTemplateUsed
(
response
,
'recipes_list.html'
)
#
class RecipesDetailTest(TestCase):
class
RecipesDetailTest
(
TestCase
):
#
def test_uses_recipes_detail_template(self):
def
test_uses_recipes_detail_template
(
self
):
#
response = self.client.get('/recipes/detail')
response
=
self
.
client
.
get
(
'/recipes/detail'
)
#
self.assertTemplateUsed(response,'recipes_detail.html')
self
.
assertTemplateUsed
(
response
,
'recipes_detail.html'
)
#
class RecipesUpdateTest(TestCase):
class
RecipesUpdateTest
(
TestCase
):
#
def test_uses_recipes_update_template(self):
def
test_uses_recipes_update_template
(
self
):
#
response = self.client.get('/recipes/update')
response
=
self
.
client
.
get
(
'/recipes/update'
)
#
self.assertTemplateUsed(response,'recipes_update_form.html')
self
.
assertTemplateUsed
(
response
,
'recipes_update_form.html'
)
#
class RecipesCreateTest(TestCase):
class
RecipesCreateTest
(
TestCase
):
#
def test_uses_recipes_create_template(self):
def
test_uses_recipes_create_template
(
self
):
#
response = self.client.get('/recipes/create')
response
=
self
.
client
.
get
(
'/recipes/create'
)
#
self.assertTemplateUsed(response,'recipes_create_form.html')
self
.
assertTemplateUsed
(
response
,
'recipes_create_form.html'
)
#orders tests
#orders tests
#
class OrdersListTest(TestCase):
class
OrdersListTest
(
TestCase
):
#
def test_uses_orders_list_template(self):
def
test_uses_orders_list_template
(
self
):
#
response = self.client.get('/orders/list')
response
=
self
.
client
.
get
(
'/orders/list'
)
#
self.assertTemplateUsed(response,'orders_list.html')
self
.
assertTemplateUsed
(
response
,
'orders_list.html'
)
#
class OrdersDetailTest(TestCase):
class
OrdersDetailTest
(
TestCase
):
#
def test_uses_orders_detail_template(self):
def
test_uses_orders_detail_template
(
self
):
#
response = self.client.get('/orders/detail')
response
=
self
.
client
.
get
(
'/orders/detail'
)
#
self.assertTemplateUsed(response,'orders_detail.html')
self
.
assertTemplateUsed
(
response
,
'orders_detail.html'
)
#
class OrdersUpdateTest(TestCase):
class
OrdersUpdateTest
(
TestCase
):
#
def test_uses_orders_update_template(self):
def
test_uses_orders_update_template
(
self
):
#
response = self.client.get('/orders/update')
response
=
self
.
client
.
get
(
'/orders/update'
)
#
self.assertTemplateUsed(response,'orders_update_form.html')
self
.
assertTemplateUsed
(
response
,
'orders_update_form.html'
)
#
class OrdersCreateTest(TestCase):
class
OrdersCreateTest
(
TestCase
):
# def test_uses_orders_create_template(self):
def
test_uses_orders_create_template
(
self
):
# response = self.client.get('/orders/create')
response
=
self
.
client
.
get
(
'/orders/create'
)
# self.assertTemplateUsed(response,'orders_create_form.html')
self
.
assertTemplateUsed
(
response
,
'orders_create_form.html'
)
\ No newline at end of file
\ No newline at end of file
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