1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-10-30 14:44:05 +00:00

fix(rules.ls_lah): make sure script starts with ls

Fix #271
This commit is contained in:
Pablo Santiago Blum de Aguiar
2015-07-03 13:18:48 -03:00
parent cb33c912e5
commit 25cc98a21a
2 changed files with 6 additions and 1 deletions

View File

@@ -3,9 +3,12 @@ from thefuck.rules.ls_lah import match, get_new_command
def test_match():
assert match(Mock(script='ls'), 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)
assert not match(Mock(script='pacman -S binutils'), None)
assert not match(Mock(script='lsof'), None)
def test_get_new_command():