Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto

Dir     : e17/proto/python-efl/python-evas/tests


Modified Files:
        01-canvas-basics.py 02-object-basics.py 03-rect.py 
        04-object-image.py 05-smart-object.py 06-canvas-as-factory.py 
        07-smart_object-as-factory.py 08-object-gradient.py 
        09-object-polygon.py 10-object_text.py 


Log Message:
init is now implicit, you can still call <module>.c_<module>.init()

shutdown() is optional, just used in tests to check if things are being 
released as expected.


===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/01-canvas-basics.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 01-canvas-basics.py 30 Apr 2007 20:17:48 -0000      1.1
+++ 01-canvas-basics.py 19 Jul 2007 16:07:07 -0000      1.2
@@ -59,6 +59,5 @@
         self.assertEqual(self.canvas.size_get(), (200, 300))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/02-object-basics.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 02-object-basics.py 30 Apr 2007 20:17:48 -0000      1.1
+++ 02-object-basics.py 19 Jul 2007 16:07:07 -0000      1.2
@@ -186,6 +186,5 @@
         self.assertEqual(self.obj.geometry_get(), (1, 2, 3, 4))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/03-rect.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 03-rect.py  30 Apr 2007 20:17:48 -0000      1.1
+++ 03-rect.py  19 Jul 2007 16:07:07 -0000      1.2
@@ -360,6 +360,5 @@
         self.assertEqual(self.r.clamp(r2), evas.Rect(-5, -5, 10, 10))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/04-object-image.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 04-object-image.py  30 Apr 2007 20:17:48 -0000      1.1
+++ 04-object-image.py  19 Jul 2007 16:07:07 -0000      1.2
@@ -15,6 +15,5 @@
         self.assertEqual(o.geometry_get(), (10, 20, 30, 40))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/05-smart-object.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 05-smart-object.py  5 May 2007 02:33:18 -0000       1.1
+++ 05-smart-object.py  19 Jul 2007 16:07:07 -0000      1.2
@@ -41,6 +41,5 @@
         self.assertEqual(self.obj.r2.geometry, (50, 50, 50, 50))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/tests/06-canvas-as-factory.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 06-canvas-as-factory.py     5 May 2007 05:53:06 -0000       1.1
+++ 06-canvas-as-factory.py     19 Jul 2007 16:07:07 -0000      1.2
@@ -33,6 +33,5 @@
                           p[1] + end[1]))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/tests/07-smart_object-as-factory.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 07-smart_object-as-factory.py       5 May 2007 05:54:34 -0000       1.1
+++ 07-smart_object-as-factory.py       19 Jul 2007 16:07:07 -0000      1.2
@@ -40,6 +40,5 @@
                           p[1] + end[1]))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/08-object-gradient.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 08-object-gradient.py       11 May 2007 01:43:33 -0000      1.1
+++ 08-object-gradient.py       19 Jul 2007 16:07:07 -0000      1.2
@@ -49,6 +49,5 @@
         self.assertEqual(o.fill_spread, evas.EVAS_TEXTURE_RESTRICT_REPEAT)
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/09-object-polygon.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 09-object-polygon.py        11 May 2007 01:45:07 -0000      1.1
+++ 09-object-polygon.py        19 Jul 2007 16:07:07 -0000      1.2
@@ -23,6 +23,5 @@
         self.assertEqual(o.color, (255, 0, 0, 255))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/tests/10-object_text.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- 10-object_text.py   11 May 2007 01:47:03 -0000      1.1
+++ 10-object_text.py   19 Jul 2007 16:07:07 -0000      1.2
@@ -28,6 +28,5 @@
         self.assertEqual(o.color, (255, 0, 0, 255))
 
 
-evas.init()
 unittest.main()
 evas.shutdown()



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to