From 5c3c91c43e12b40a618ad471ba24950d5b6d1ea0 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Sun, 3 Jan 2016 15:01:40 -0500 Subject: Consolidate tests into a single file --- tests/test_sync.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 tests/test_sync.py (limited to 'tests/test_sync.py') 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) -- cgit v1.2.3