[Jifty-commit] r6532 - in jifty/trunk: t/TestApp/lib/TestApp/Model t/TestApp/t

Jifty commits jifty-commit at lists.jifty.org
Mon Mar 2 19:57:53 EST 2009


Author: alexmv
Date: Mon Mar  2 19:57:53 2009
New Revision: 6532

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/t/TestApp/lib/TestApp/Model/User.pm
   jifty/trunk/t/TestApp/t/05-editactions-Record.t
   jifty/trunk/t/TestApp/t/config-Record

Log:
 r42835 at kohr-ah:  chmrr | 2009-03-02 14:47:27 -0500
 Remove tests which refer to UUID coolumns (which are no longer in core)


Modified: jifty/trunk/t/TestApp/lib/TestApp/Model/User.pm
==============================================================================
--- jifty/trunk/t/TestApp/lib/TestApp/Model/User.pm	(original)
+++ jifty/trunk/t/TestApp/lib/TestApp/Model/User.pm	Mon Mar  2 19:57:53 2009
@@ -34,7 +34,6 @@
   is immutable,
   default is defer { DateTime->now },
   filters are qw(Jifty::Filter::DateTime Jifty::DBI::Filter::Date);
-column 'uuid' => is UUID;
 };
 
 

Modified: jifty/trunk/t/TestApp/t/05-editactions-Record.t
==============================================================================
--- jifty/trunk/t/TestApp/t/05-editactions-Record.t	(original)
+++ jifty/trunk/t/TestApp/t/05-editactions-Record.t	Mon Mar  2 19:57:53 2009
@@ -4,7 +4,7 @@
 use strict;
 
 BEGIN { $ENV{'JIFTY_CONFIG'} = 't/config-Record' }
-use Jifty::Test::Dist tests => 10;
+use Jifty::Test::Dist tests => 9;
 use Jifty::Test::WWW::Mechanize;
 # Make sure we can load the model
 use_ok('TestApp::Model::User');
@@ -44,6 +44,5 @@
 
 is($o->email, 'newemail at example.com', "Email was updated by form");
 is($o->tasty, 1, "User is still tasty (was not updated since immutable)");
-ok($o->uuid,  "The user has a uuid ". $o->uuid);
 1;
 

Modified: jifty/trunk/t/TestApp/t/config-Record
==============================================================================
--- jifty/trunk/t/TestApp/t/config-Record	(original)
+++ jifty/trunk/t/TestApp/t/config-Record	Mon Mar  2 19:57:53 2009
@@ -2,5 +2,3 @@
 framework:
   Database:
     RecordBaseClass: Jifty::DBI::Record
-  Plugins:
-    - UUID: {}


More information about the Jifty-commit mailing list