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 c248cdd commit 35d3f4aCopy full SHA for 35d3f4a
graphene_mongo/tests/test_converter.py
@@ -44,6 +44,10 @@ def test_should_uuid_convert_id():
44
assert_conversion(mongoengine.UUIDField, graphene.ID)
45
46
47
+def test_sould_int_convert_int():
48
+ assert_conversion(mongoengine.IntField, graphene.Int)
49
+
50
51
def test_should_object_id_convert_id():
52
assert_conversion(mongoengine.ObjectIdField, graphene.ID)
53
0 commit comments