Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
Django Lab 1
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
Keith Adrian Santos
Django Lab 1
Commits
eb13955f
Commit
eb13955f
authored
Mar 06, 2020
by
Keith Adrian Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Heroes app in willowisp
parent
0a1c86d4
Pipeline
#770
canceled with stages
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2 additions
and
1 deletion
+2
-1
lab1_functional_test.py
lab1_functional_test.py
+1
-1
__init__.cpython-38.pyc
willowisp/heroes/__pycache__/__init__.cpython-38.pyc
+0
-0
admin.cpython-38.pyc
willowisp/heroes/__pycache__/admin.cpython-38.pyc
+0
-0
models.cpython-38.pyc
willowisp/heroes/__pycache__/models.cpython-38.pyc
+0
-0
__init__.cpython-38.pyc
...isp/heroes/migrations/__pycache__/__init__.cpython-38.pyc
+0
-0
settings.cpython-38.pyc
willowisp/willowisp/__pycache__/settings.cpython-38.pyc
+0
-0
settings.py
willowisp/willowisp/settings.py
+1
-0
No files found.
lab1_functional_test.py
View file @
eb13955f
...
...
@@ -11,7 +11,7 @@ class NewVisitorTest(unittest.TestCase):
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'
)
self
.
browser
.
get
(
'http://localhost:8000'
)
# She notices the page title and header mention
# 'The Will of the Wisps Wiki'
...
...
willowisp/heroes/__pycache__/__init__.cpython-38.pyc
0 → 100644
View file @
eb13955f
File added
willowisp/heroes/__pycache__/admin.cpython-38.pyc
0 → 100644
View file @
eb13955f
File added
willowisp/heroes/__pycache__/models.cpython-38.pyc
0 → 100644
View file @
eb13955f
File added
willowisp/heroes/migrations/__pycache__/__init__.cpython-38.pyc
0 → 100644
View file @
eb13955f
File added
willowisp/willowisp/__pycache__/settings.cpython-38.pyc
View file @
eb13955f
No preview for this file type
willowisp/willowisp/settings.py
View file @
eb13955f
...
...
@@ -31,6 +31,7 @@ ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS
=
[
'heroes'
,
'django.contrib.admin'
,
'django.contrib.auth'
,
'django.contrib.contenttypes'
,
...
...
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