mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-16 19:40:39 +03:00
Add None case
This commit is contained in:
parent
a74c402f13
commit
c200a088c0
|
@ -70,7 +70,8 @@ def test_json_parse_literal_query():
|
|||
nested_dict: {
|
||||
key_a: "a",
|
||||
key_b: "b"
|
||||
}
|
||||
},
|
||||
empty_key: null
|
||||
})
|
||||
}
|
||||
'''
|
||||
|
@ -89,6 +90,7 @@ def test_json_parse_literal_query():
|
|||
'nested_dict': {
|
||||
'key_a': 'a',
|
||||
'key_b': 'b'
|
||||
}
|
||||
},
|
||||
'empty_key': None
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user