Make rindex work.
[gitmo/Moose-Autobox.git] / t / 005_string.t
index 086ef26..bdba48f 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 16;
+use Test::More tests => 18;
 use Test::Exception;
 
 BEGIN {
@@ -41,5 +41,7 @@ is('Hello World, Hello'->index('Hello'), 0, '... got the correct index');
 
 is('Hello World, Hello'->index('Hello', 6), 13, '... got the correct index');
 
-#is('Hello World, Hello'->rindex('World'), 13, '... got the correct right index');
-#diag CORE::rindex('Hello World, Hello', 'Hello');
+is('Hello World, Hello'->rindex('Hello'), 13, '... got the correct right index');
+
+is('Hello World, Hello'->rindex('Hello', 6), 0, '... got the correct right index');
+