示例#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)
def test_match():
    assert match(Command("rm -rf /", "add --no-preserve-root"))