Commit 9c96f7d7 authored by Ayn Collado's avatar Ayn Collado

I uhh did something to tests and urls apparently

parent eb8dcae1
......@@ -9,6 +9,11 @@ class NewVisitorTest(unittest.TestCase):
def tearDown(self):
self.browser.quit()
def test_every_test_is_in_here(self):
#Ingredients_list test
self.browser.get('http://localhost:8000/ingredients_list/')
self.assertIn('Ingredients - List', self.browser.title)
def test_Fail_Test(self):
self.fail('Finished the test!')
......
......@@ -18,5 +18,5 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path(r'', include('froyo.urls')),
path(r'froyo/', include('froyo.urls')),
]
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