Esempio n. 1
0
 def assertRegressedSince(self, expected, old_status, new_status):
     (stages1, other_failures1) = old_status
     (stages2, other_failures2) = new_status
     a = BuildStatus(stages1, set(other_failures1))
     b = BuildStatus(stages2, set(other_failures2))
     self.assertEquals(expected, b.regressed_since(a))