aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sync.py')
-rw-r--r--tests/test_sync.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/test_sync.py b/tests/test_sync.py
deleted file mode 100644
index e8a51cc..0000000
--- a/tests/test_sync.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from dotfiles.core import Dotfiles
-
-
-def test_sync(tmpdir):
- """Basic sync operation."""
-
- dotfile = tmpdir.ensure('Dotfiles/foo')
- symlink = tmpdir.join('.foo')
-
- Dotfiles(homedir=str(tmpdir),
- path=str(dotfile.dirname),
- prefix='',
- ignore=[],
- externals={},
- packages=[],
- dry_run=False).sync()
-
- assert symlink.check(link=1)
- assert symlink.samefile(dotfile)