From 2974c6b5d76f2835b7db7592b60b3c7a43921c93 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Mon, 29 Feb 2016 18:04:44 -0800 Subject: [PATCH] a little __repr__ test to improve coverage --- tests/test_sources.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_sources.py b/tests/test_sources.py index 3bdec5c..d4f093b 100644 --- a/tests/test_sources.py +++ b/tests/test_sources.py @@ -98,6 +98,7 @@ class TestNullSourceCollection(TestToolsFilesystem): def test_SourceCollection_no_dirnames(self): s = SourceCollection() self.assertIsInstance(s, SourceCollection) + self.assertTrue('docs' in str(s)) class TestInvalidSourceCollection(TestToolsFilesystem):