memgraph/tests/qa/tck_engine/steps/binary_tree.py
Marko Budiselic 4fd5b1ebc4 Add support for distributed tck tests
Reviewers: mferencevic, ipaljak, mculinovic

Reviewed By: mculinovic

Subscribers: teon.banek, msantl, pullbot

Differential Revision: https://phabricator.memgraph.io/D1395
2018-08-01 10:51:49 +02:00

15 lines
283 B
Python

# -*- coding: utf-8 -*-
from behave import given
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)