diff options
author | Jon Bernard <jbernard@tuxion.com> | 2015-12-26 14:44:27 -0500 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2015-12-28 14:15:15 -0500 |
commit | 190b99b39fa1a574c41d074e53821640ed08bedb (patch) | |
tree | 5241581a07b5bbff42dbd1839a13d76075ec2a00 /tests/test_core.py | |
parent | c8c4b42b009897c31310960984819ca7a95a2429 (diff) | |
download | dotfiles-190b99b39fa1a574c41d074e53821640ed08bedb.tar.gz dotfiles-190b99b39fa1a574c41d074e53821640ed08bedb.tar.bz2 dotfiles-190b99b39fa1a574c41d074e53821640ed08bedb.zip |
Remove half-backed tests refactoring
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/test_core.py b/tests/test_core.py deleted file mode 100644 index 640cac9..0000000 --- a/tests/test_core.py +++ /dev/null @@ -1,18 +0,0 @@ -from dotfiles.core import Dotfiles as Repository - - -def test_sync(homedir): - """Basic sync operation.""" - - contents = {'.foo': True, - '.bar': True, - '.baz': False} - - homedir.setup(contents) - - Repository(path=homedir.repo, - homedir=homedir.path).sync() - - # .baz should now exist and link to the correct location - contents['.baz'] = True - homedir.verify(contents) |