Enlightenment CVS committal

Author  : leviathan
Project : e17
Module  : proto

Dir     : e17/proto/etk-perl/t/Etk


Modified Files:
        Alignment.t Entry.t 
Added Files:
        Bin.t 


Log Message:
- object creation is now much simpler to maintain
- Etk_Widget is handled differently now and checks for object type, this makes 
it more transparent to the perl user
- removed unused code (object cache is no more)

===================================================================
RCS file: /cvs/e/e17/proto/etk-perl/t/Etk/Alignment.t,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Alignment.t 6 Aug 2006 14:56:14 -0000       1.2
+++ Alignment.t 4 Sep 2006 19:39:26 -0000       1.3
@@ -1,4 +1,4 @@
-use Test::More 'no_plan'; # tests => 1;
+use Test::More tests => 12;
 use Etk;
 
 my $al = Etk::Alignment->new(0.5, 0.5, 1, 1);
===================================================================
RCS file: /cvs/e/e17/proto/etk-perl/t/Etk/Entry.t,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Entry.t     6 Aug 2006 14:56:14 -0000       1.2
+++ Entry.t     4 Sep 2006 19:39:26 -0000       1.3
@@ -6,12 +6,9 @@
 ok( defined $b,        "Entry new()");
 ok( $b->isa("Etk::Entry"),     "Class Check");
 
-SKIP: {
-       skip "need to be visible", 2;
-$b->PasswordSet(1);
-is($b->PasswordGet(), 1,       "Password set/get");
+$b->PasswordModeSet(1);
+is($b->PasswordModeGet(), 1,   "Password set/get");
 
 $b->TextSet("test");
 is($b->TextGet(), "test",      "Text set/get");
-}
 



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to