Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace
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
Kirby Ezekiel Santos
thegoodplace
Commits
8818b2c3
Commit
8818b2c3
authored
Mar 18, 2020
by
Kirby Ezekiel Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a test for checking if the orders update form page returns the correct html template
parent
2ccfd41b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
tests.py
froyo/tests.py
+5
-0
No files found.
froyo/tests.py
View file @
8818b2c3
...
@@ -55,3 +55,8 @@ class OrdersDetailPageTest(TestCase):
...
@@ -55,3 +55,8 @@ class OrdersDetailPageTest(TestCase):
def
test_orders_detail_page_returns_correct_html
(
self
):
def
test_orders_detail_page_returns_correct_html
(
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
OrdersUpdatePageTest
(
TestCase
):
def
test_orders_update_page_returns_correct_html
(
self
):
response
=
self
.
client
.
get
(
'/orders-update'
)
self
.
assertTemplateUsed
(
response
,
'orders_update.html'
)
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