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