diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_basic.py | 15 | ||||
-rw-r--r-- | tests/test_cli.py | 16 |
2 files changed, 16 insertions, 15 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py index 20019bb..97c643c 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -6,7 +6,6 @@ import shutil import tempfile import unittest -from dotfiles.cli import dispatch from dotfiles.core import Dotfiles from dotfiles.utils import is_link_to @@ -61,20 +60,6 @@ class DotfilesTestCase(unittest.TestCase): os.path.join(self.homedir, '.lastpass'), '/tmp') - def test_dispatch(self): - """Test that the force option is handed on to the sync method.""" - - class MockDotfiles(object): - def sync(self, files=None, force=False): - assert force - - class MockNamespace(object): - def __init__(self): - self.action = 'sync' - self.force = True - - dispatch(MockDotfiles(), MockNamespace(), []) - def test_move_repository(self): """Test the move() method for a Dotfiles repository.""" diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 0000000..f2cd979 --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,16 @@ +from dotfiles.cli import dispatch + + +def test_dispatch(): + """Test that the force option is handed on to the sync method.""" + + class MockDotfiles: + def sync(self, files=None, force=False): + assert force + + class MockNamespace: + def __init__(self): + self.action = 'sync' + self.force = True + + dispatch(MockDotfiles(), MockNamespace(), []) |