1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-08 11:24:16 +00:00

Clean up imports

This commit is contained in:
Marcel Robitaille
2019-01-20 15:00:50 -04:00
parent 08addde1d9
commit 247653c2c2

View File

@@ -7,17 +7,16 @@ basic unittest for the compare function
import unittest import unittest
import os import os
import yaml
from dotdrop.config import Cfg
from dotdrop.dotdrop import cmd_importer from dotdrop.dotdrop import cmd_importer
from dotdrop.dotdrop import cmd_compare from dotdrop.dotdrop import cmd_compare
from dotdrop.dotfile import Dotfile
from dotdrop.installer import Installer from dotdrop.installer import Installer
from dotdrop.comparator import Comparator from dotdrop.comparator import Comparator
from dotdrop.templategen import Templategen from dotdrop.templategen import Templategen
from tests.helpers import * # from tests.helpers import *
from tests.helpers import create_dir, get_string, get_tempdir, clean, \
create_random_file, create_fake_config, load_config, edit_content
class TestCompare(unittest.TestCase): class TestCompare(unittest.TestCase):