From: Guillaume Pellerin Date: Thu, 22 Aug 2013 16:18:49 +0000 (+0200) Subject: cleanup processor list tests X-Git-Tag: 0.5.0~70^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9e10390268217350235ca3405709134e7ec55d95;p=timeside.git cleanup processor list tests --- diff --git a/tests/test_list_processors.py b/tests/test_list_processors.py index 2f04ce3..b18c5d0 100755 --- a/tests/test_list_processors.py +++ b/tests/test_list_processors.py @@ -31,28 +31,6 @@ class TestListCoreProcessors(TestCase): procs = timeside.core.processors(timeside.api.IGrapher) self.assertNotEquals(len(procs), 0) -class TestListProcessors(TestCase): - """ test get list of processors """ - - def testHasSomeDecoders(self): - "has some decoders" - procs = timeside.get_processors(timeside.api.IEncoder) - self.assertNotEquals(len(procs), 0) - - def testHasSomeEncoders(self): - "has some encoders" - procs = timeside.get_processors(timeside.api.IEncoder) - self.assertNotEquals(len(procs), 0) - - def testHasSomeAnalyzers(self): - "has some analyzers" - procs = timeside.get_processors(timeside.api.IAnalyzer) - self.assertNotEquals(len(procs), 0) - - def testHasSomeGraphers(self): - "has some graphers" - procs = timeside.get_processors(timeside.api.IGrapher) - self.assertNotEquals(len(procs), 0) if __name__ == '__main__': unittest.main(testRunner=TestRunner())