1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00

#N/A Fix git_checkout tests

This commit is contained in:
nvbn 2015-07-22 04:52:52 +03:00
parent a6c5b8322a
commit ab1cd665cd

View File

@ -14,7 +14,7 @@ def did_not_match(target, did_you_forget=False):
@pytest.fixture @pytest.fixture
def get_branches(mocker): def get_branches(mocker):
return mocker.patch('thefuck.rules.git_checkout') return mocker.patch('thefuck.rules.git_checkout.get_branches')
@pytest.mark.parametrize('command', [ @pytest.mark.parametrize('command', [
@ -40,12 +40,14 @@ def test_not_match(command):
([], ([],
Command('git commit unknown', stderr=did_not_match('unknown')), Command('git commit unknown', stderr=did_not_match('unknown')),
'git branch unknown && git commit unknown'), 'git branch unknown && git commit unknown'),
(['master'], (['test-random-branch-123'],
Command(script='git checkout mster', stderr=did_not_match('mster')), Command(script='git checkout tst-rdm-brnch-123',
'git checkout master'), stderr=did_not_match('tst-rdm-brnch-123')),
(['master'], 'git checkout test-random-branch-123'),
Command(script='git commit mster', stderr=did_not_match('mster')), (['test-random-branch-123'],
'git commit master')]) Command(script='git commit tst-rdm-brnch-123',
stderr=did_not_match('tst-rdm-brnch-123')),
'git commit test-random-branch-123')])
def test_get_new_command(branches, command, new_command, get_branches): def test_get_new_command(branches, command, new_command, get_branches):
get_branches.return_value = branches get_branches.return_value = branches
assert get_new_command(command, None) == new_command assert get_new_command(command, None) == new_command