nuke uuid test (uuid not in core no more, lenore)
Matt S Trout [Tue, 30 May 2006 21:09:25 +0000 (21:09 +0000)]
t/79uuid.t [deleted file]

diff --git a/t/79uuid.t b/t/79uuid.t
deleted file mode 100644 (file)
index 1a3061d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-use strict;
-use warnings;  
-
-use Test::More;
-use lib qw(t/lib);
-use DBICTest;
-
-my $schema = DBICTest->init_schema();
-
-eval 'use Data::UUID ; 1'
-  or plan skip_all => 'Install Data::UUID run this test';
-
-plan tests => 1;
-DBICTest::Schema::Artist->load_components('UUIDColumns');
-DBICTest::Schema::Artist->uuid_columns('name');
-Class::C3->reinitialize();
-
-my $artist = $schema->resultset("Artist")->create( { artistid => 100 } );
-like $artist->name, qr/[\w-]{36}/, 'got something like uuid';
-