davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=2ebc0dcf747a00f75ac82e74b3281e929fef6c39
commit 2ebc0dcf747a00f75ac82e74b3281e929fef6c39 Author: Dave Andreoli <[email protected]> Date: Tue Aug 2 19:30:49 2016 +0200 2 more class name tests --- tests/eo/test_02_class_names.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/eo/test_02_class_names.py b/tests/eo/test_02_class_names.py index d86823e..c6a30e8 100644 --- a/tests/eo/test_02_class_names.py +++ b/tests/eo/test_02_class_names.py @@ -1,6 +1,8 @@ #!/usr/bin/env python from efl import evas +from efl import edje +from efl import emotion from efl import elementary as elm import unittest @@ -66,7 +68,8 @@ class TestElmClassNames(unittest.TestCase): def testEvas(self): for cls in [evas.Image, evas.Line, evas.Polygon, evas.Text, evas.Textblock, - evas.Box, evas.Textgrid, evas.Table, evas.Grid]: + evas.Box, evas.Textgrid, evas.Table, evas.Grid, + edje.Edje, emotion.Emotion]: obj1 = cls(self.win.evas) self.frame.content = obj1 --
