Commit 3463d83c authored by Ayn Collado's avatar Ayn Collado

I uhh made functional_test and ran it

parent 0f1b0bf8
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://localhost:8000')
assert 'Django' in browser.title
\ No newline at end of file
This diff is collapsed.
...@@ -38,7 +38,7 @@ INSTALLED_APPS = [ ...@@ -38,7 +38,7 @@ INSTALLED_APPS = [
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'selenium', 'selenium',
'froyo', # 'froyo',
] ]
MIDDLEWARE = [ MIDDLEWARE = [
......
...@@ -18,5 +18,5 @@ from django.urls import include, path ...@@ -18,5 +18,5 @@ from django.urls import include, path
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path(r'', include('froyo.urls')), # path(r'', 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