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
4271505e
Commit
4271505e
authored
Mar 18, 2020
by
Kirby Ezekiel Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a test for checking if orders list contains css
parent
8632c28f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
tests.py
froyo/tests.py
+6
-0
No files found.
froyo/tests.py
View file @
4271505e
...
...
@@ -126,3 +126,9 @@ class PageContainsCssTest(TestCase):
html
=
response
.
content
.
decode
(
'utf8'
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/bootstrap.min.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
html
)
def
test_orders_detail_contains_css
(
self
):
response
=
self
.
client
.
get
(
'/orders-detail'
)
html
=
response
.
content
.
decode
(
'utf8'
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/bootstrap.min.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
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