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_prefix.py | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 tests/test_prefix.py (limited to 'tests/test_prefix.py') diff --git a/tests/test_prefix.py b/tests/test_prefix.py deleted file mode 100644 index 636a7d1..0000000 --- a/tests/test_prefix.py +++ /dev/null @@ -1,41 +0,0 @@ -import pytest -from dotfiles.core import Dotfiles - - -@pytest.mark.xfail() -def test_prefix(tmpdir): - """Test basic sync when using a non-default prefix.""" - - dotfile = tmpdir.ensure('Dotfiles/_vimrc') - symlink = tmpdir.join('.vimrc') - - 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) - - -def test_prefix_with_package(tmpdir): - """Test syncing a package when using a non-default prefix.""" - - 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) -- cgit v1.2.3