From: Peter Rabbitson Date: Mon, 9 Feb 2009 09:37:34 +0000 (+0000) Subject: Remove bogus test: X-Git-Tag: v0.08240~96^2~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1e891a37baefb4dc4410018bc87ea4a45f66fc02;p=dbsrgits%2FDBIx-Class.git Remove bogus test: mst: r5411 is groditi testing a fixed bug. --- diff --git a/t/60core.t b/t/60core.t index a87e859..8e1ff46 100644 --- a/t/60core.t +++ b/t/60core.t @@ -7,7 +7,7 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 89; +plan tests => 88; eval { require DateTime::Format::MySQL }; my $NO_DTFM = $@ ? 1 : 0; @@ -387,10 +387,3 @@ SKIP: { $en_row->insert; is($en_row->encoded, 'amliw', 'insert does not encode again'); } - -#make sure result sources can resolve their own names -{ - my $source_class = 'DBICTest::Schema::Artist'; - my $source = $source_class->result_source_instance; - is($source->source_name, 'Artist', 'source_name is correct'); -}