54f14ef788
Summary: First memgraph tests Reviewers: buda Reviewed By: buda Subscribers: matej.gradicek Differential Revision: https://phabricator.memgraph.io/D123
11 lines
252 B
Python
11 lines
252 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)
|