def test_match():
    assert match(
        Command('mkdir foo/bar/baz', '',
                'mkdir: foo/bar: No such file or directory'), None)
    assert not match(Command('mkdir foo/bar/baz', '', ''), None)
    assert not match(Command('mkdir foo/bar/baz', '', 'foo bar baz'), None)
    assert not match(Command('', '', ''), None)
Exemple #2
0
def test_not_match(command):
    assert not match(command)
Exemple #3
0
def test_match(command):
    assert match(command)
Exemple #4
0
def test_not_match(command):
    assert not match(command, None)
Exemple #5
0
def test_match():
    assert match(Command('mkdir foo/bar/baz', '', 'mkdir: foo/bar: No such file or directory'), None)
    assert not match(Command('mkdir foo/bar/baz', '', ''), None)
    assert not match(Command('mkdir foo/bar/baz', '', 'foo bar baz'), None)
    assert not match(Command('', '', ''), None)
Exemple #6
0
def test_match():
    assert match(Command('mkdir foo/bar/baz',
                         stderr='mkdir: foo/bar: No such file or directory'),
                 None)
Exemple #7
0
def test_match(command):
    assert match(command)