Ejemplo n.º 1
0
def test_customize_run_2():
    bashplot.bashplot(fnames=test_dat, args=args_3)
    assert True
Ejemplo n.º 2
0
def test_customize_run_3():
    bashplot.bashplot(fnames=test_out, args=args_4)
    assert True
Ejemplo n.º 3
0
def test_customize_run_mock_2(bashplot):
    bashplot.bashplot(fnames=test_dat, args=args_3)
    assert bashplot.bashplot.is_called
Ejemplo n.º 4
0
def test_customize_run_1():
    bashplot.bashplot(fnames=test_txt, args=args_2)
    assert True
Ejemplo n.º 5
0
def test_customize_run_mock_1(bashplot):
    bashplot.bashplot(fnames=test_txt, args=args_2)
    assert bashplot.bashplot.is_called
Ejemplo n.º 6
0
def test_default_run():
    bashplot.bashplot(fnames=test_txt, args=args_1)
    assert True
Ejemplo n.º 7
0
def test_default_run_mock(bashplot):
    bashplot.bashplot(fnames=test_txt, args=args_1)
    assert bashplot.bashplot.is_called