Exemplo n.º 1
0
 def test_items(self):
     ta = ('a', 'b', 'c')
     l = zip(ta, ta)
     dl = DisplayList(l)
     self.assertTrue(dl.items() == tuple(l))
Exemplo n.º 2
0
 def test_items(self):
     ta = ('a', 'b', 'c')
     l = zip(ta, ta)
     dl = DisplayList(l)
     self.assertTrue(dl.items() == tuple(l))
Exemplo n.º 3
0
 def test_items(self):
     ta = ('a', 'b', 'c')
     l = zip(ta, ta)
     dl = DisplayList(l)
     self.failUnless(dl.items() == tuple(l))