Commit 4fc36640 authored by Kirby Ezekiel Santos's avatar Kirby Ezekiel Santos

Added a test for checking if recipes list contains css

parent 79fc2b56
...@@ -96,3 +96,9 @@ class PageContainsCssTest(TestCase): ...@@ -96,3 +96,9 @@ class PageContainsCssTest(TestCase):
html = response.content.decode('utf8') html = response.content.decode('utf8')
self.assertIn('<link rel="stylesheet" href="/static/bootstrap.min.css">', html) self.assertIn('<link rel="stylesheet" href="/static/bootstrap.min.css">', html)
self.assertIn('<link rel="stylesheet" href="/static/styles.css">', html) self.assertIn('<link rel="stylesheet" href="/static/styles.css">', html)
def test_recipes_list_contains_css(self):
response = self.client.get('/recipes_list')
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)
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