memgraph/tests/qa/tck_engine/steps/binary_tree.py
2017-06-20 15:01:11 +02:00

13 lines
254 B
Python

from behave import *
import graph
@given(u'the binary-tree-1 graph')
def step_impl(context):
graph.create_graph('binary-tree-1', context)
@given(u'the binary-tree-2 graph')
def step_impl(context):
graph.create_graph('binary-tree-2', context)