projects
/
gitmo/Eval-Closure.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
a30f41f
)
just export eval_closure by default
Jesse Luehrs [Wed, 20 Oct 2010 19:47:23 +0000 (14:47 -0500)]
lib/Eval/Closure.pm
patch
|
blob
|
blame
|
history
t/01-basic.t
patch
|
blob
|
blame
|
history
diff --git
a/lib/Eval/Closure.pm
b/lib/Eval/Closure.pm
index
86a8377
..
1ce0327
100644
(file)
--- a/
lib/Eval/Closure.pm
+++ b/
lib/Eval/Closure.pm
@@
-1,6
+1,7
@@
package Eval::Closure;
use Sub::Exporter -setup => {
exports => [qw(eval_closure)],
+ groups => { default => [qw(eval_closure)] },
};
use Carp;
diff --git
a/t/01-basic.t
b/t/01-basic.t
index
42e309a
..
82224d9
100644
(file)
--- a/
t/01-basic.t
+++ b/
t/01-basic.t
@@
-3,7
+3,7
@@
use strict;
use warnings;
use Test::More;
-use Eval::Closure 'eval_closure';
+use Eval::Closure;
my $foo = [];