From: Arthur Axel 'fREW' Schmidt Date: Fri, 24 Aug 2012 13:33:30 +0000 (-0500) Subject: put off deprecation and clarify test output X-Git-Tag: v0.08200~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7f08eb0138f156476d67a0dea658cccc2623237e;p=dbsrgits%2FDBIx-Class.git put off deprecation and clarify test output --- diff --git a/t/60core.t b/t/60core.t index edf5758..ed7c225 100644 --- a/t/60core.t +++ b/t/60core.t @@ -555,10 +555,11 @@ lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't # make sure we got rid of the compat shims SKIP: { - skip "Remove in 0.082", 3 if $DBIx::Class::VERSION < 0.082; + my $remove_version = 0.083; + skip "Remove in $remove_version", 3 if $DBIx::Class::VERSION < $remove_version; for (qw/compare_relationship_keys pk_depends_on resolve_condition/) { - ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource"); + ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource, removed before $remove_version"); } }