mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-12 06:44:03 +01:00
#611: Allow to configure alias automatically by calling fuck
twice
This commit is contained in:
@@ -61,3 +61,12 @@ class TestBash(object):
|
||||
command = 'git log -p'
|
||||
command_parts = ['git', 'log', '-p']
|
||||
assert shell.split_command(command) == command_parts
|
||||
|
||||
def test_how_to_configure(self, shell, config_exists):
|
||||
config_exists.return_value = True
|
||||
assert shell.how_to_configure().can_configure_automatically
|
||||
|
||||
def test_how_to_configure_when_config_not_found(self, shell,
|
||||
config_exists):
|
||||
config_exists.return_value = False
|
||||
assert not shell.how_to_configure().can_configure_automatically
|
||||
|
Reference in New Issue
Block a user