Exemplo n.º 1
0
def test_not_match(run_script, command, run_script_out):
    run_script.stdout = BytesIO(run_script_out)
    assert not match(command)
Exemplo n.º 2
0
def test_not_match(run_script, command, run_script_out):
    run_script.stdout = BytesIO(run_script_out)
    assert not match(command)
Exemplo n.º 3
0
def test_match(script):
    command = Command(script, output)
    assert match(command)
Exemplo n.º 4
0
def test_match(script):
    command = Command(script, output)
    assert match(command)