Leaving this for now

This commit is contained in:
2025-12-17 15:05:40 -08:00
parent 6041d4158e
commit cf1b3fb42c
4 changed files with 30 additions and 2 deletions

View File

@@ -1 +1,2 @@
from . import test_parse
from . import test_issue_19

19
tests/test_issue_19.py Normal file
View File

@@ -0,0 +1,19 @@
from unittest import TestCase
from pycmx import parse_cmx3600
class Issue19Test(TestCase):
def setUp(self):
self.f = open("tests/edls/ISSUE_19_unusual01.edl")
def test_parse(self):
edl = parse_cmx3600(self.f)
for event in edl.events:
self.assertIsNotNone(event.edits)
if event.number == 1:
self.assertEqual(len(event.edits), 1)
def tearDown(self):
self.f.close()