summaryrefslogtreecommitdiff
path: root/t/op
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-06-13 09:23:23 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-06-13 09:23:23 +0000
commit4bf88892922e6ea671fc32c0d448f3468e183c24 (patch)
treece951be86ad4b55c36bc1b25d281d9876a5a8f05 /t/op
parent13a24baded0bcfd57a5060f46aead50d004b1374 (diff)
downloadperl-4bf88892922e6ea671fc32c0d448f3468e183c24.tar.gz
I thought I had fixed the spelling of DOES() in universal.t, but
apparently no. p4raw-id: //depot/perl@28392
Diffstat (limited to 't/op')
-rwxr-xr-xt/op/universal.t20
1 files changed, 10 insertions, 10 deletions
diff --git a/t/op/universal.t b/t/op/universal.t
index e37bfc724d..a41a8ea825 100755
--- a/t/op/universal.t
+++ b/t/op/universal.t
@@ -123,9 +123,9 @@ my $subs = join ' ', sort grep { defined &{"UNIVERSAL::$_"} } keys %UNIVERSAL::;
## The test for import here is *not* because we want to ensure that UNIVERSAL
## can always import; it is an historical accident that UNIVERSAL can import.
if ('a' lt 'A') {
- is $subs, "can does import isa VERSION";
+ is $subs, "can import isa DOES VERSION";
} else {
- is $subs, "VERSION can does import isa";
+ is $subs, "DOES VERSION can import isa";
}
ok $a->isa("UNIVERSAL");
@@ -146,9 +146,9 @@ ok $a->isa("UNIVERSAL");
my $sub2 = join ' ', sort grep { defined &{"UNIVERSAL::$_"} } keys %UNIVERSAL::;
# XXX import being here is really a bug
if ('a' lt 'A') {
- is $sub2, "can does import isa VERSION";
+ is $sub2, "can import isa DOES VERSION";
} else {
- is $sub2, "VERSION can does import isa";
+ is $sub2, "DOES VERSION can import isa";
}
eval 'sub UNIVERSAL::sleep {}';
@@ -202,7 +202,7 @@ fresh_perl_is('package Foo; Foo->VERSION; print "ok"', 'ok');
package Foo;
-sub does { 1 }
+sub DOES { 1 }
package Bar;
@@ -211,8 +211,8 @@ package Bar;
package Baz;
package main;
-ok( Foo->does( 'bar' ), 'does() should call does() on class' );
-ok( Bar->does( 'Bar' ), '... and should fall back to isa()' );
-ok( Bar->does( 'Foo' ), '... even when inherited' );
-ok( Baz->does( 'Baz' ), '... even without inheriting any other does()' );
-ok( ! Baz->does( 'Foo' ), '... returning true or false appropriately' );
+ok( Foo->DOES( 'bar' ), 'DOES() should call DOES() on class' );
+ok( Bar->DOES( 'Bar' ), '... and should fall back to isa()' );
+ok( Bar->DOES( 'Foo' ), '... even when inherited' );
+ok( Baz->DOES( 'Baz' ), '... even without inheriting any other DOES()' );
+ok( ! Baz->DOES( 'Foo' ), '... returning true or false appropriately' );