diff options
author | Jon Bernard <jbernard@tuxion.com> | 2016-01-16 22:16:44 -0500 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2016-01-17 06:48:44 -0500 |
commit | 67e5e7432cf4a2bb9bd7148dc2976cfc30b6a06b (patch) | |
tree | 3d24dded8ac1435338c472c30abf2baa9691ad57 /tests | |
parent | 4d9988d78ed884eb534cf3a058372684965d426a (diff) | |
download | dotfiles-67e5e7432cf4a2bb9bd7148dc2976cfc30b6a06b.tar.gz dotfiles-67e5e7432cf4a2bb9bd7148dc2976cfc30b6a06b.tar.bz2 dotfiles-67e5e7432cf4a2bb9bd7148dc2976cfc30b6a06b.zip |
Break functionality into separate files
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): |