From a4721ad48e492f027699b6486b10269fd39e859b Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 9 Sep 2017 11:18:51 +0200 Subject: [PATCH] add tests --- tests/test_import.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/test_import.py b/tests/test_import.py index bc5c2bd..502c5a1 100644 --- a/tests/test_import.py +++ b/tests/test_import.py @@ -10,6 +10,9 @@ import os import yaml from dotdrop.dotdrop import importer +from dotdrop.dotdrop import list_profiles +from dotdrop.dotdrop import list_files +from dotdrop.dotdrop import header from dotdrop.config import Cfg from tests.helpers import * @@ -189,6 +192,10 @@ class TestImport(unittest.TestCase): self.assertTrue(os.path.islink(dotfile7)) self.assertTrue(os.path.realpath(dotfile7) == indt7) + list_profiles(conf) + list_files(opts, conf) + header() + def main(): unittest.main()