1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00

test focus

This commit is contained in:
deadc0de6
2017-09-09 11:08:00 +02:00
parent 5019b7c49b
commit d4c1cdae22

View File

@@ -134,7 +134,11 @@ class TestCompare(unittest.TestCase):
results = self.compare(opts, conf, tmp, len(dfiles))
self.assertTrue(results == expected)
compare(opts, conf, tmp)
# test compare from dotdrop
self.assertTrue(compare(opts, conf, tmp))
# test focus
self.assertTrue(compare(opts, conf, tmp, focus=d4))
self.assertFalse(compare(opts, conf, tmp, focus='/tmp/fake'))
def main():