573b6cb045
* Add initial behave test improvements * Make HTML human-readable * Remove tutorial tests * Migrate to neo4j-driver==4.1.1
15 lines
283 B
Python
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)
|