Fakultas Ilmu Komputer UI
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PMPL
Collection of Practice
2019
1406568923-practice
Commits
b7c40d22
Commit
b7c40d22
authored
Sep 26, 2019
by
emil farisan
Browse files
fix a few errors and apply linter
parent
11e596ad
Changes
3
Hide whitespace changes
Inline
Side-by-side
functional_tests.py
View file @
b7c40d22
...
...
@@ -20,20 +20,26 @@ class NewVisitorTest(unittest.TestCase):
self
.
assertIn
(
'To-Do'
,
self
.
browser
.
title
)
self
.
fail
(
'Finish the test!'
)
# She is invited to enter a to-do item straight away
# She types "Buy peacock feathers" into a text box (Edith's hobby
# is tying fly-fishing lures)
# When she hits enter, the page updates, and now the page lists
# "1: Buy peacock feathers" as an item in a to-do list
# There is still a text box inviting her to add another item. She
# enters "Use peacock feathers to make a fly"
# (Edith is very methodical)
# The page updates again, and now shows both items on her list
# Edith wonders whether the site will remember her list. Then she sees
# that the site has generated a unique URL for her -- there is some
# explanatory text to that effect.
# She visits that URL - her to-do list is still there.
# Satisfied, she goes back to sleep
if
__name__
==
'__main__'
:
unittest
.
main
(
warnings
=
'ignore'
)
if
__name__
==
'__main__'
:
unittest
.
main
(
warnings
=
'ignore'
)
lists/views.py
View file @
b7c40d22
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
...
...
superlists/urls.py
View file @
b7c40d22
...
...
@@ -13,10 +13,9 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from
django.con
trib
import
admin
from
django.url
s
import
path
from
django.con
f.urls
import
url
from
list
s
import
views
urlpatterns
=
[
path
(
'$'
,
'lists.views.home'
)
# path('admin/', admin.site.urls),
url
(
r
'^$'
,
views
.
home_page
,
name
=
'home'
),
]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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