aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_package.py
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@tuxion.com> 2016-01-03 15:01:40 -0500
committerGravatar Jon Bernard <jbernard@tuxion.com> 2016-01-03 22:39:43 -0500
commit5c3c91c43e12b40a618ad471ba24950d5b6d1ea0 (patch)
treee738fdd7e322f86cc609b630f2e19e4eff7f71e6 /tests/test_package.py
parent48e781a75c8b5d20c1e9c54c92dd31e641dfd121 (diff)
downloaddotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.tar.gz
dotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.tar.bz2
dotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.zip
Consolidate tests into a single file
Diffstat (limited to 'tests/test_package.py')
-rw-r--r--tests/test_package.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/test_package.py b/tests/test_package.py
deleted file mode 100644
index ddc5787..0000000
--- a/tests/test_package.py
+++ /dev/null
@@ -1,21 +0,0 @@
-from dotfiles.core import Dotfiles
-
-
-def test_package_sync(tmpdir):
- """Test syncing a package."""
-
- repository = tmpdir.ensure('Dotfiles', dir=1)
- dotfile = repository.ensure('config/awesome/testfile')
-
- Dotfiles(homedir=str(tmpdir),
- path=str(repository),
- prefix='',
- ignore=[],
- externals={},
- packages=['config'],
- dry_run=False,
- quiet=True).sync()
-
- assert tmpdir.join('.config').check(dir=1)
- assert tmpdir.join('.config/awesome').check(link=1)
- assert tmpdir.join('.config/awesome').samefile(dotfile.dirname)