Beispiel #1
0
def test_not_match():
    assert not match(Command(), None)
Beispiel #2
0
def test_not_match():
    assert not match(Command(), None)
Beispiel #3
0
def test_match(stderr, stdout):
    assert match(Command(stderr=stderr, stdout=stdout), None)
Beispiel #4
0
def test_not_match():
    assert not match(Command())
    assert not match(Command(script='sudo ls', stderr='Permission denied'))
Beispiel #5
0
def test_match(stderr, stdout):
    assert match(Command(stderr=stderr, stdout=stdout), None)
Beispiel #6
0
def test_match(stderr):
    assert match(Command(stderr=stderr), None)
Beispiel #7
0
def test_not_match():
    assert not match(Command())
    assert not match(Command(script='sudo ls', stderr='Permission denied'))
Beispiel #8
0
def test_match(output):
    assert match(Command('', output))
Beispiel #9
0
def test_not_match():
    assert not match(Command('', ''))
    assert not match(Command('sudo ls', 'Permission denied'))
Beispiel #10
0
def test_not_match():
    assert not match(Command("", ""))
    assert not match(Command("sudo ls", "Permission denied"))
Beispiel #11
0
def test_match():
    assert match(Command('', '', 'Permission denied'), None)
    assert match(Command('', '', 'permission denied'), None)
    assert match(Command('', '', "npm ERR! Error: EACCES, unlink"), None)
    assert not match(Command('', '', ''), None)
Beispiel #12
0
def test_not_match():
    assert not match(Command('', ''))
    assert not match(Command('sudo ls', 'Permission denied'))
Beispiel #13
0
def test_match(output):
    assert match(Command('', output))
Beispiel #14
0
def test_match(stderr):
    assert match(Command(stderr=stderr), None)