aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_basic.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_basic.py')
-rw-r--r--tests/test_basic.py15
1 files changed, 0 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."""