コード例 #1
0
ファイル: test_pacman.py プロジェクト: Clpsplug/thefuck
def test_not_match(command):
    assert not match(command)
コード例 #2
0
ファイル: test_pacman.py プロジェクト: Clpsplug/thefuck
def test_match_mocked(subp_mock, command, return_value):
    subp_mock.check_output.return_value = return_value
    assert match(command)
コード例 #3
0
ファイル: test_pacman.py プロジェクト: Clpsplug/thefuck
def test_match(command):
    assert match(command)
コード例 #4
0
ファイル: test_pacman.py プロジェクト: tgunr/tryagain
def test_not_match(command):
    assert not match(command)
コード例 #5
0
ファイル: test_pacman.py プロジェクト: tgunr/tryagain
def test_match_mocked(subp_mock, command, return_value):
    subp_mock.check_output.return_value = return_value
    assert match(command)
コード例 #6
0
ファイル: test_pacman.py プロジェクト: tgunr/tryagain
def test_match(command):
    assert match(command)