whitespace cleanup
[p5sagit/local-lib.git] / t / pipeline.t
index a433f2c..f1035b0 100644 (file)
@@ -1,4 +1,3 @@
-
 use strict;
 use warnings;
 use Test::More tests => 1;
@@ -6,11 +5,9 @@ use Test::More tests => 1;
 use local::lib ();
 
 {
+    package local::lib;
 
-package local::lib;
-
-{ package Foo; sub foo { -$_[1] } sub bar { $_[1]+2 } sub baz { $_[1]+3 } }
-my $foo = bless({}, 'Foo');
-Test::More::ok($foo->${pipeline qw(foo bar baz)}(10) == -15);
-
+    { package Foo; sub foo { -$_[1] } sub bar { $_[1]+2 } sub baz { $_[1]+3 } }
+    my $foo = bless({}, 'Foo');
+    Test::More::ok($foo->${pipeline qw(foo bar baz)}(10) == -15);
 }