We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1f7b6c commit 0132d55Copy full SHA for 0132d55
graphene_mongo/tests/test_converter.py
@@ -50,6 +50,10 @@ def test_sould_int_convert_int():
50
assert_conversion(mongoengine.IntField, graphene.Int)
51
52
53
+def test_sould_long_convert_int():
54
+ assert_conversion(mongoengine.LongField, graphene.Int)
55
+
56
57
def test_should_object_id_convert_id():
58
assert_conversion(mongoengine.ObjectIdField, graphene.ID)
59
0 commit comments