Add method for Python 2.7

This commit is contained in:
Noelle Leigh 2020-04-17 16:13:53 -04:00
parent 5ad6bbc50e
commit fc0833e1f9

View File

@ -46,6 +46,9 @@ def test_graphql_test_case_op_name(post_mock):
class TestClass(GraphQLTestCase):
GRAPHQL_SCHEMA = True
def runTest(self):
pass
tc = TestClass()
tc.setUpClass()
tc.query("query { }", op_name="QueryName")