memgraph/tests/qa/steps/binary_tree.py
Matej Ferencevic e92036cfcc Refactor QA
Reviewers: teon.banek, buda, mculinovic

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1752
2018-12-04 12:33:48 +01: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)