Skip to content
Snippets Groups Projects
test_utils.py 257 B
Newer Older
from lwr.tools import ToolBox

from os import pardir
from os.path import join, dirname


def get_test_toolbox():
    toolbox_path = join(dirname(__file__), pardir, "test_data", "test_shed_toolbox.xml")
    toolbox = ToolBox(toolbox_path)
    return toolbox