Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/b/a/babelsubs-HEAD/babelsubs/tests/test_srt.py babelsubs(Download)
def test_internal_format(self): subs = utils.get_subs("simple.srt") parsed = subs.to_internal() sub_data = [x for x in parsed.subtitle_items(SRTGenerator.MAPPINGS)] self.assertEquals(sub_data[0].start_time, 4)
self.assertEquals(len(subs1), len(subs2)) for x1, x2 in zip([x for x in parsed1.subtitle_items(SRTGenerator.MAPPINGS)], \ [x for x in parsed2.subtitle_items(SRTGenerator.MAPPINGS)]): self.assertEquals(x1, x2)
def test_curly_brackets(self): subs = utils.get_subs("curly_brackets.srt") parsed = subs.to_internal() sub_data = list(parsed.subtitle_items(SRTGenerator.MAPPINGS)) self.assertEquals(len(sub_data), 1)
internal2 = parsed2.to_internal() for x1, x2 in zip([x for x in internal.subtitle_items(SRTGenerator.MAPPINGS)], \ [x for x in internal2.subtitle_items(SRTGenerator.MAPPINGS)]): self.assertEquals(x1, x2)
src/b/a/babelsubs-HEAD/babelsubs/tests/test_dfxp.py babelsubs(Download)
def test_whitespace(self): subs = utils.get_subs("pre-dmr.dfxp") sub = subs.subtitle_set.subtitle_items(mappings=SRTGenerator.MAPPINGS)[0] self.assertEqual(sub.text, '''Last time, we began talking about\nresonance structures. And I'd like''')