Files
bonobo/tests/test_basicusage.py
Romain Dorgueil 9037d94654 Fix imports.
2017-11-02 07:25:38 +01:00

18 lines
409 B
Python

from unittest.mock import patch
import pytest
import bonobo
from bonobo.execution.graph import GraphExecutionContext
@pytest.mark.timeout(2)
def test_run_graph_noop():
graph = bonobo.Graph(bonobo.noop)
assert len(graph) == 1
with patch('bonobo._api._is_interactive_console', side_effect=lambda: False):
result = bonobo.run(graph)
assert isinstance(result, GraphExecutionContext)