mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-13 13:16:49 +03:00
Merge pull request #373 from pizzapanther/master
add time query variable test
This commit is contained in:
commit
51c37fef98
|
@ -54,3 +54,18 @@ def test_datetime_query_variable():
|
||||||
assert result.data == {
|
assert result.data == {
|
||||||
'datetime': isoformat
|
'datetime': isoformat
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def test_time_query_variable():
|
||||||
|
now = datetime.datetime.now().replace(tzinfo=pytz.utc)
|
||||||
|
time = datetime.time(now.hour, now.minute, now.second, now.microsecond, now.tzinfo)
|
||||||
|
isoformat = time.isoformat()
|
||||||
|
|
||||||
|
result = schema.execute(
|
||||||
|
'''query Test($time: Time){ time(at: $time) }''',
|
||||||
|
variable_values={'time': isoformat}
|
||||||
|
)
|
||||||
|
assert not result.errors
|
||||||
|
assert result.data == {
|
||||||
|
'time': isoformat
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user