Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
Lab-1-Columbres
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
Alysha Columbres
Lab-1-Columbres
Commits
14acfb72
Commit
14acfb72
authored
Mar 06, 2020
by
Alysha Columbres
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created CBVs for each url in heroes and created an html file for heroes
parent
b77815fb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
32 deletions
+40
-32
heroes.html
heroes/templates/heroes.html
+8
-0
lab1_functional_test.py
heroes/templates/lab1_functional_test.py
+0
-31
tests.py
heroes/tests.py
+14
-0
urls.py
heroes/urls.py
+3
-0
views.py
heroes/views.py
+15
-1
No files found.
heroes/templates/heroes.html
0 → 100644
View file @
14acfb72
<!DOCTYPE html>
<html>
<head>
<title>
Heroes
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
heroes/templates/lab1_functional_test.py
deleted
100644 → 0
View file @
b77815fb
from
selenium
import
webdriver
import
unittest
class
NewVisitorTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
browser
=
webdriver
.
Firefox
()
def
tearDown
(
self
):
self
.
browser
.
quit
()
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.
# She goes to check out its homepage
browser
.
get
(
'http://localhost:8000'
)
# She notices the page title and header mention
# 'The Will of the Wisps Wiki'
self
.
assertIn
(
'The Will of the Wisps Wiki'
,
self
.
browser
.
title
)
# She sees a list containing three heroes with their corresponding
# names, health points, and damage
# When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image).
# She spots the page title and header mentions the name of the hero she selected.
# While she is in a specific hero's page, she sees a button labeled "Back to Heroes List".
# She clicks this and she is redirected back to the wiki's homepage.
self
.
fail
(
'Finish the test!'
)
\ No newline at end of file
heroes/tests.py
View file @
14acfb72
from
django.test
import
TestCase
from
django.test
import
TestCase
# Create your tests here.
# Create your tests here.
class
TaskListPageTest
(
TestCase
):
def
test_uses_list_template
(
self
):
response
=
self
.
client
.
get
(
'/heroes'
)
self
.
assertTemplateUsed
(
response
,
'heroes.html'
)
response
=
self
.
client
.
get
(
'/hero/cloud'
)
self
.
assertTemplateUsed
(
response
,
'detail_cloud.html'
)
response
=
self
.
client
.
get
(
'/hero/sunflowey'
)
self
.
assertTemplateUsed
(
response
,
'detail_sunflowey.html'
)
response
=
self
.
client
.
get
(
'/hero/jester'
)
self
.
assertTemplateUsed
(
response
,
'detail_jester.html'
)
\ No newline at end of file
heroes/urls.py
View file @
14acfb72
...
@@ -16,6 +16,9 @@ Including another URLconf
...
@@ -16,6 +16,9 @@ Including another URLconf
from
django.conf.urls
import
url
from
django.conf.urls
import
url
from
.views
import
Heroes
from
.views
import
Heroes
from
.views
import
Cloud
from
.views
import
Sunflowey
from
.views
import
Jester
urlpatterns
=
[
urlpatterns
=
[
url
(
r'^/heroes$'
,
Heroes
.
as_view
(),
name
=
'Heroes'
),
url
(
r'^/heroes$'
,
Heroes
.
as_view
(),
name
=
'Heroes'
),
...
...
heroes/views.py
View file @
14acfb72
from
django.
shortcuts
import
render
from
django.
views.generic.base
import
TemplateView
# Create your views here.
# Create your views here.
class
Heroes
(
TemplateView
):
template_name
=
"heroes.html"
class
Cloud
(
TemplateView
):
template_name
=
"detail_cloud.html"
class
Sunflowey
(
TemplateView
):
template_name
=
"detail_sunflowey.html"
class
Jester
(
TemplateView
):
template_name
=
"detail_jester.html"
\ No newline at end of file
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