Exemple #1
0
def test_not_match():
    assert not match(Command(), None)
Exemple #2
0
def test_not_match():
    assert not match(Command(), None)
Exemple #3
0
def test_match(stderr, stdout):
    assert match(Command(stderr=stderr, stdout=stdout), None)
Exemple #4
0
def test_not_match():
    assert not match(Command())
    assert not match(Command(script='sudo ls', stderr='Permission denied'))
Exemple #5
0
def test_match(stderr, stdout):
    assert match(Command(stderr=stderr, stdout=stdout), None)
Exemple #6
0
def test_match(stderr):
    assert match(Command(stderr=stderr), None)
Exemple #7
0
def test_not_match():
    assert not match(Command())
    assert not match(Command(script='sudo ls', stderr='Permission denied'))
Exemple #8
0
def test_match(output):
    assert match(Command('', output))
Exemple #9
0
def test_not_match():
    assert not match(Command('', ''))
    assert not match(Command('sudo ls', 'Permission denied'))
Exemple #10
0
def test_not_match():
    assert not match(Command("", ""))
    assert not match(Command("sudo ls", "Permission denied"))
Exemple #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)
Exemple #12
0
def test_not_match():
    assert not match(Command('', ''))
    assert not match(Command('sudo ls', 'Permission denied'))
Exemple #13
0
def test_match(output):
    assert match(Command('', output))
Exemple #14
0
def test_match(stderr):
    assert match(Command(stderr=stderr), None)