Esempio n. 1
0
def test_match():
    assert match(Mock(script='rm -rf /', stderr='add --no-preserve-root'),
                 None)
    assert not match(Mock(script='ls', stderr='add --no-preserve-root'), None)
    assert not match(
        Mock(script='rm --no-preserve-root /',
             stderr='add --no-preserve-root'), None)
    assert not match(Mock(script='rm -rf /', stderr=''), None)
Esempio n. 2
0
def test_match():
    assert match(Command(script='rm -rf /', stderr='add --no-preserve-root'))
Esempio n. 3
0
def test_not_match(command):
    assert not match(command)
Esempio n. 4
0
def test_match():
    assert match(Command(script='rm -rf /',
                         stderr='add --no-preserve-root'))
Esempio n. 5
0
def test_not_match(command):
    assert not match(command)
Esempio n. 6
0
def test_match():
    assert match(Command('rm -rf /', 'add --no-preserve-root'))
Esempio n. 7
0
def test_match():
    assert match(Command(script="rm -rf /", stderr="add --no-preserve-root"), None)
def test_match():
    assert match(Command("rm -rf /", "add --no-preserve-root"))