From: Matt S Trout Date: Tue, 30 May 2006 21:09:25 +0000 (+0000) Subject: nuke uuid test (uuid not in core no more, lenore) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a859ec33911c0538c983b46539c061dbad51f110;p=dbsrgits%2FDBIx-Class-Historic.git nuke uuid test (uuid not in core no more, lenore) --- diff --git a/t/79uuid.t b/t/79uuid.t deleted file mode 100644 index 1a3061d..0000000 --- a/t/79uuid.t +++ /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'; -