From fbf55ec2e626c571a98bf086f02541812e16609a Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 28 Dec 2018 22:51:09 -0800 Subject: [PATCH] test tweaks added a test and removed superfluous init file --- tests/__init__.py | 0 tests/test_parse.py | 1 + 2 files changed, 1 insertion(+) delete mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_parse.py b/tests/test_parse.py index 734110e..f2b7a05 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -28,6 +28,7 @@ class TestParse(TestCase): with open(f"tests/edls/{fn}" ,'r') as f: edl = pycmx.parse_cmx3600(f) self.assertTrue( type(edl.title) is str ) + self.assertTrue( len(edl.title) > 0 ) def test_event_sanity(self):