Commit 5214a575 authored by R E's avatar R E

Work on page title and header error

parent 37fe6f28
File added
myenv/ myenv/
db.sqlite3 db.sqlite3
__pycache__
*.pyc
geckodriver.log
<html>
<head>
<title>The Will of the Wisps Wiki</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
from django.test import TestCase from django.test import TestCase
# Create your tests here.
from django.conf.urls import url
from .views import HomeView
urlpatterns = [
url(r'^$', HomeView.as_view(), name='home'),
]
from django.shortcuts import render from django.views.generic.base import TemplateView
# Create your views here. class HomeView(TemplateView):
template_name = 'home.html'
...@@ -11,7 +11,7 @@ class NewVisitorTest(unittest.TestCase): ...@@ -11,7 +11,7 @@ class NewVisitorTest(unittest.TestCase):
def test_can_display_a_heroes_list_and_more_information_per_hero(self): def test_can_display_a_heroes_list_and_more_information_per_hero(self):
# Widget has heard about a new wiki app for the game called The Will of the Wisps. # Widget has heard about a new wiki app for the game called The Will of the Wisps.
# She goes to check out its homepage # She goes to check out its homepage
browser.get('http://localhost:8000') self.browser.get('http://localhost:8000')
# She notices the page title and header mention # She notices the page title and header mention
# 'The Will of the Wisps Wiki' # 'The Will of the Wisps Wiki'
...@@ -29,3 +29,6 @@ class NewVisitorTest(unittest.TestCase): ...@@ -29,3 +29,6 @@ class NewVisitorTest(unittest.TestCase):
# She clicks this and she is redirected back to the wiki's homepage. # She clicks this and she is redirected back to the wiki's homepage.
self.fail('Finish the test!') self.fail('Finish the test!')
if __name__ == '__main__':
unittest.main(warnings='ignore')
\ No newline at end of file
...@@ -37,6 +37,7 @@ INSTALLED_APPS = [ ...@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'heroes'
] ]
MIDDLEWARE = [ MIDDLEWARE = [
......
...@@ -18,5 +18,5 @@ from django.contrib import admin ...@@ -18,5 +18,5 @@ from django.contrib import admin
urlpatterns = [ urlpatterns = [
url(r'^admin/', admin.site.urls), url(r'^admin/', admin.site.urls),
url(r'', include('heroes.url')), url(r'', include('heroes.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