1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-10-31 07:04:12 +00:00

Merge branch 'ls_lah' of git://github.com/crimsonknave/thefuck into crimsonknave-ls_lah

This commit is contained in:
nvbn
2015-04-25 03:35:53 +02:00
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from mock import patch, Mock
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)
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'