Example #1
0
 def test_ivi_compilation_season(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract('http://www.ivi.ru/watch/dezhurnyi_angel/season2')
     self.assertIsPlaylist(result)
     self.assertEqual(result['id'], u'dezhurnyi_angel/season2')
     self.assertEqual(result['title'], u'Дежурный ангел (2010 - 2012) 2 сезон')
     self.assertTrue(len(result['entries']) >= 20)
Example #2
0
 def test_ivi_compilation_season(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract("http://www.ivi.ru/watch/dvoe_iz_lartsa/season1")
     self.assertIsPlaylist(result)
     self.assertEqual(result["id"], "dvoe_iz_lartsa/season1")
     self.assertEqual(result["title"], "Двое из ларца (2006 - 2008) 1 сезон")
     self.assertTrue(len(result["entries"]) >= 12)
 def test_ivi_compilation_season(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract('http://www.ivi.ru/watch/dvoe_iz_lartsa/season1')
     self.assertIsPlaylist(result)
     self.assertEqual(result['id'], 'dvoe_iz_lartsa/season1')
     self.assertEqual(result['title'], 'Двое из ларца (2006 - 2008) 1 сезон')
     assertGreaterEqual(self, len(result['entries']), 12)
Example #4
0
 def test_ivi_compilation(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract('http://www.ivi.ru/watch/dvoe_iz_lartsa')
     self.assertIsPlaylist(result)
     self.assertEqual(result['id'], 'dvoe_iz_lartsa')
     self.assertEqual(result['title'], 'Двое из ларца (2006 - 2008)')
     self.assertTrue(len(result['entries']) >= 24)
Example #5
0
 def test_ivi_compilation(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract('http://www.ivi.ru/watch/dvoe_iz_lartsa')
     self.assertIsPlaylist(result)
     self.assertEqual(result['id'], 'dvoe_iz_lartsa')
     self.assertEqual(result['title'], 'Двое из ларца (2006 - 2008)')
     assertGreaterEqual(self, len(result['entries']), 24)
 def test_ivi_compilation_season(self):
     dl = FakeYDL()
     ie = IviCompilationIE(dl)
     result = ie.extract("http://www.ivi.ru/watch/dezhurnyi_angel/season1")
     self.assertIsPlaylist(result)
     self.assertEqual(result["id"], "dezhurnyi_angel/season1")
     self.assertEqual(result["title"], "Дежурный ангел (2010 - 2012) 1 сезон")
     self.assertTrue(len(result["entries"]) >= 16)