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_basic.py | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'tests/test_basic.py') diff --git a/tests/test_basic.py b/tests/test_basic.py index 58e35ed..20019bb 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -37,25 +37,6 @@ class DotfilesTestCase(unittest.TestCase): os.path.realpath(path1), os.path.realpath(path2)) - def test_sync(self): - """Basic sync operation.""" - - touch(os.path.join(self.repository, 'foo')) - - dotfiles = Dotfiles(homedir=self.homedir, - path=self.repository, - prefix='', - ignore=[], - externals={}, - packages=[], - dry_run=False) - - dotfiles.sync() - - self.assertPathEqual( - os.path.join(self.homedir, '.foo'), - os.path.join(self.repository, 'foo')) - def test_force_sync_directory(self): """Test forced sync when the dotfile is a directory. -- cgit v1.2.3