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
b0fb6ef9
Commit
b0fb6ef9
authored
Sep 14, 2020
by
katsel
Browse files
Test if date matches
parent
ce719e9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/resttime_tests.py
View file @
b0fb6ef9
from
nose.tools
import
*
import
flask
from
datetime
import
datetime
,
date
from
resttime
import
*
app
.
config
[
'TESTING'
]
=
True
...
...
@@ -16,3 +17,10 @@ def test_index():
assert_equal
(
resp
.
status_code
,
expected
),
"Expected status %r is not %r"
%
(
expected
,
resp
.
status_code
)
assert
resp
.
data
,
"Response data is empty."
def
test_date
():
# check that the date is correct
with
web
.
get
(
'/time'
)
as
resp
:
restline
=
resp
.
data
.
splitlines
()[
0
].
decode
(
'utf-8'
)
resttime
=
datetime
.
strptime
(
restline
,
'%a %b %d %H:%M:%S %Y'
)
assert
resttime
.
date
()
==
date
.
today
(),
"Date does not match"
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