[libclass-virtual-perl] 10/11: - Minor test fix for slightly different perldiag. [rt.cpan.org 11647]

dom at earth.li dom at earth.li
Wed Aug 23 14:00:17 UTC 2017


This is an automated email from the git hooks/post-receive script.

dom pushed a commit to tag v0.06
in repository libclass-virtual-perl.

commit 282ff2b38218d90b8e16cb9865451ae4bd7f1e2e
Author: Michael G. Schwern <schwern at pobox.com>
Date:   Sun Sep 3 22:05:58 2006 +0000

        - Minor test fix for slightly different perldiag. [rt.cpan.org 11647]
    
    git-svn-id: file:///Users/schwern/.svk/local/local/Class-Virtual@17849 9c88509d-e914-0410-b01c-b9530614cbfe
---
 Changes              | 3 ++-
 lib/Class/Virtual.pm | 2 +-
 t/Abstract.t         | 2 +-
 t/Virtual.t          | 2 +-
 4 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Changes b/Changes
index b53c27f..4750342 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,5 @@
-Change log for Perl module Class::Virtual
+0.06
+    - Minor test fix for slightly different perldiag. [rt.cpan.org 11647]
 
 0.05  Fri Dec 31 01:38:29 EST 2004
     - Added a license and copyright.  [rt.cpan.org 8229]
diff --git a/lib/Class/Virtual.pm b/lib/Class/Virtual.pm
index 3ca11f4..8a88f27 100644
--- a/lib/Class/Virtual.pm
+++ b/lib/Class/Virtual.pm
@@ -2,7 +2,7 @@ package Class::Virtual;
 
 use strict;
 use vars qw($VERSION @ISA);
-$VERSION = '0.05';
+$VERSION = '0.06';
 
 use Carp::Assert qw(DEBUG);  # import only the tiny bit we need so it doesn't
                              # get inherited.
diff --git a/t/Abstract.t b/t/Abstract.t
index c45ca73..ec1c81b 100644
--- a/t/Abstract.t
+++ b/t/Abstract.t
@@ -71,7 +71,7 @@ eval {
 eval {
     Foo::This->bing;
 };
-::like( $@, qr/^Can't locate object method "bing" via package "Foo::This" at/,
+::like( $@, qr/^Can't locate object method "bing" via package "Foo::This"/,
         'virtual methods not leaking');   #')
 
 
diff --git a/t/Virtual.t b/t/Virtual.t
index 3a7d22f..9ad1613 100644
--- a/t/Virtual.t
+++ b/t/Virtual.t
@@ -71,7 +71,7 @@ eval {
 eval {
     Test::This->bing;
 };
-::like( $@, qr/^Can't locate object method "bing" via package "Test::This" at/,
+::like( $@, qr/^Can't locate object method "bing" via package "Test::This"/,
       'virtual methods not leaking');
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libclass-virtual-perl.git



More information about the Pkg-perl-cvs-commits mailing list