kuuko pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=c8f782538f1122bb5b01c376993c62f85ce605e3

commit c8f782538f1122bb5b01c376993c62f85ce605e3
Author: Kai Huuhko <kai.huu...@gmail.com>
Date:   Thu Feb 26 01:02:09 2015 +0200

    Remove tests that were infact wrong.
---
 tests/elementary/test_01_basics.py | 3 ---
 tests/eo/test_01_basics.py         | 4 +---
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/tests/elementary/test_01_basics.py 
b/tests/elementary/test_01_basics.py
index 80c9cd8..e75e08b 100644
--- a/tests/elementary/test_01_basics.py
+++ b/tests/elementary/test_01_basics.py
@@ -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)
diff --git a/tests/eo/test_01_basics.py b/tests/eo/test_01_basics.py
index a32a83a..a26ffe2 100644
--- a/tests/eo/test_01_basics.py
+++ b/tests/eo/test_01_basics.py
@@ -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)

-- 


Reply via email to