]> git.parisson.com Git - timeside.git/commitdiff
cleanup processor list tests
authorGuillaume Pellerin <yomguy@parisson.com>
Thu, 22 Aug 2013 16:18:49 +0000 (18:18 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Thu, 22 Aug 2013 16:18:49 +0000 (18:18 +0200)
tests/test_list_processors.py

index 2f04ce3b97523b796c8d1e2f7857bcda3c0079f2..b18c5d0af6e3668c4c76ee2f9d834ddd8132cab5 100755 (executable)
@@ -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())