Update test_parse.py

This commit is contained in:
Jamie Hardt
2019-01-03 19:31:33 -08:00
parent 47772b21d0
commit a52e4329ce

View File

@@ -34,7 +34,8 @@ class TestParse(TestCase):
def test_event_sanity(self):
for fn in type(self).files:
with open(f"tests/edls/{fn}" ,'r') as f:
path = "tests/edls/" + fn
with open(path ,'r') as f:
edl = pycmx.parse_cmx3600(f)
for index, event in enumerate(edl.events):
self.assertTrue( len(event.edits) > 0 )