def test_track(self): test_path = os.path.join(SAMPLE_DIRECTORY, "track.sboard") project = sboardparser.parse(test_path) self._test_project(project)
def __init__(self, *args, **kwargs): super(SBoardTrackTest, self).__init__(*args, **kwargs) test_path = os.path.join(SAMPLE_DIRECTORY, "track.sboard") self.project = sboardparser.parse(test_path)
def test_sequence(self): test_path = os.path.join(SAMPLE_DIRECTORY, "sequence.sboard") project = sboardparser.parse(test_path) self._test_project(project)
def test_empty_project(self): test_path = os.path.join(SAMPLE_DIRECTORY, "empty_project.sboard") project = sboardparser.parse(test_path) self._test_project(project)