예제 #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)
예제 #2
0
def test_match():
    assert match(Command(script='rm -rf /', stderr='add --no-preserve-root'))
예제 #3
0
def test_not_match(command):
    assert not match(command)
예제 #4
0
def test_match():
    assert match(Command(script='rm -rf /',
                         stderr='add --no-preserve-root'))
예제 #5
0
def test_not_match(command):
    assert not match(command)
예제 #6
0
def test_match():
    assert match(Command('rm -rf /', 'add --no-preserve-root'))
예제 #7
0
def test_match():
    assert match(Command(script="rm -rf /", stderr="add --no-preserve-root"), None)
예제 #8
0
def test_match():
    assert match(Command("rm -rf /", "add --no-preserve-root"))