Fix the restarter in devel branch hopefully
[catagits/Catalyst-Devel.git] / t / get_sharedir_file.t
index 2ec7cab..899af3b 100644 (file)
@@ -12,9 +12,9 @@ my $i = Test::MockObject::Extends->new('Catalyst::Helper');
 throws_ok {
     $i->get_sharedir_file(qw/does not exist and hopefully never will or we are
         totally screwed.txt/);
-} qr/No such/, 'Exception for file not found from ->get_sharedir_file';
+} qr/Cannot find/, 'Exception for file not found from ->get_sharedir_file';
 
 lives_ok {
-    ok($i->get_sharedir_file('makefile.tt'), 'has contents');
+    ok($i->get_sharedir_file('Makefile.PL.tt'), 'has contents');
 } 'Can get_sharedir_file';