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