1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 02:09:44 +00:00

add tests

This commit is contained in:
deadc0de6
2017-09-09 11:18:51 +02:00
parent 38477c6ddb
commit a4721ad48e

View File

@@ -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()