25
Come si generano unit test dinamici (con parametri) in Python?
Ho una specie di dati di test e voglio creare un test unitario per ogni articolo. La mia prima idea era di farlo in questo modo: import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] class TestSequence(unittest.TestCase): def testsample(self): for name, a,b in l: print "test", …