From 5e25760d14bc6719810d9129c3226514e545f042 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Mon, 28 Dec 2015 14:28:49 -0500 Subject: Create new location for sync tests I'm going to migrate away from unittest capability in favor of pytest and its use of the py.path filesystem abstraction. It's much cleaner and easier to work with. --- tests/test_sync.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/test_sync.py (limited to 'tests/test_sync.py') diff --git a/tests/test_sync.py b/tests/test_sync.py new file mode 100644 index 0000000..e8a51cc --- /dev/null +++ b/tests/test_sync.py @@ -0,0 +1,19 @@ +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) -- cgit v1.2.3