def test_not_match(script):
    stderr=''
    assert not match(Command(script=script, stderr=stderr))
Beispiel #2
0
def test_not_match(script):
    stderr = ''
    assert not match(Command(script=script, stderr=stderr))
def test_match(stderr, script):
    assert match(Command(script=script, stderr=stderr))
Beispiel #4
0
def test_match(stderr, script):
    assert match(Command(script=script, stderr=stderr))
Beispiel #5
0
def test_not_match(script):
    assert not match(Command(script, ''))
Beispiel #6
0
def test_match(output, script):
    assert match(Command(script, output))
Beispiel #7
0
def test_not_match(script):
    assert not match(Command(script, ''))
Beispiel #8
0
def test_match(output, script):
    assert match(Command(script, output))