コード例 #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