silence "Name "File::Spec::rel2abs" used only once: possible typo"
[p5sagit/local-lib.git] / t / classmethod.t
index 19868b5..f928fd5 100644 (file)
@@ -17,6 +17,7 @@ is($c->resolve_empty_path('foo'), 'foo');
 
 {
 
+no warnings 'once';
 local *File::Spec::rel2abs = sub { shift; 'FOO'.shift; };
 is($c->resolve_relative_path('bar'),'FOObar');
 
@@ -30,6 +31,4 @@ $c->ensure_dir_structure_for('t/var/splat');
 
 ok(-d 't/var/splat');
 
-ok(-f 't/var/splat/.modulebuildrc');
-
 }