Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Kat Hoessel
resttime
Commits
09881883
Commit
09881883
authored
Sep 14, 2020
by
katsel
Browse files
wording
parent
e356ba49
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/resttime_tests.py
View file @
09881883
...
...
@@ -15,11 +15,11 @@ def read_api_time(endpoint='/time'):
return
rtime
def
test_index
():
# check that
we get a 404 on the / URL
# check that
the / endpoint returns a 404
resp
=
web
.
get
(
'/'
)
assert_equal
(
resp
.
status_code
,
404
)
#
test
that /time
URL works (200 status and not empty)
#
check
that /time
endpoint works
expected
=
200
resp
=
web
.
get
(
'/time'
)
assert_equal
(
resp
.
status_code
,
expected
),
"Expected status %r is not %r"
%
(
...
...
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