mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-30 06:34:09 +00:00
#118 Make ls_lah disabled by default
This commit is contained in:
@@ -3,11 +3,11 @@ from thefuck.rules.ls_lah import match, get_new_command
|
||||
|
||||
|
||||
def test_match():
|
||||
assert match(Mock(script='ls file.py'), None)
|
||||
assert match(Mock(script='ls /opt'), None)
|
||||
assert not match(Mock(script='ls -lah /opt'), None)
|
||||
assert match(Mock(script='ls file.py'), None)
|
||||
assert match(Mock(script='ls /opt'), None)
|
||||
assert not match(Mock(script='ls -lah /opt'), None)
|
||||
|
||||
|
||||
def test_get_new_command():
|
||||
assert get_new_command( Mock(script='ls file.py'), None) == 'ls -lah file.py'
|
||||
assert get_new_command( Mock(script='ls'), None) == 'ls -lah'
|
||||
assert get_new_command(Mock(script='ls file.py'), None) == 'ls -lah file.py'
|
||||
assert get_new_command(Mock(script='ls'), None) == 'ls -lah'
|
||||
|
||||
Reference in New Issue
Block a user