def test_describe(self): self.iterable_equal(describe(self.f1), ('x', 'y')) self.iterable_equal(describe(self.f2), ['x', 'y']) self.iterable_equal(describe(self.f3), ('x', 'y'))
def test_describe(self): assert describe(self.f1) == ["x", "y"] assert describe(self.f2) == ["x", "y"] assert describe(self.f3) == ["x", "y"]
def test_describe(self): assert describe(self.f1) == ['x', 'y'] assert describe(self.f2) == ['x', 'y'] assert describe(self.f3) == ['x', 'y']