diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_dotfiles.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_dotfiles.py b/tests/test_dotfiles.py index ffc9073..8323385 100644 --- a/tests/test_dotfiles.py +++ b/tests/test_dotfiles.py @@ -1,7 +1,9 @@ import pytest -from dotfiles.dotfiles import Repository, Dotfile, cli -from dotfiles.dotfiles import IsSymlink +from dotfiles.cli import cli +from dotfiles.dotfile import Dotfile +from dotfiles.repository import Repository +from dotfiles.exceptions import IsSymlink class TestCli(object): |