Remove tests that were infact wrong.

This commit is contained in:
Kai Huuhko 2015-02-26 01:02:09 +02:00
parent ff83ec4266
commit c8f782538f
2 changed files with 1 additions and 6 deletions

View File

@ -17,9 +17,6 @@ class TestElmBasics(unittest.TestCase):
def tearDown(self):
self.o.delete()
def testParentGet1(self):
self.assertIsNone(self.o.parent_get())
def testParentGet2(self):
o = Button(self.o)
self.assertEqual(Eo.parent_get(o), self.o)

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python
import efl.eo as eo
from efl.eo import Eo
import unittest
@ -19,9 +20,6 @@ class TestBasics(unittest.TestCase):
def testRepr(self):
self.assertIsNotNone(repr(self.o))
def testParentGet(self):
self.assertIsNone(self.o.parent_get())
if __name__ == '__main__':
unittest.main(verbosity=2)