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