summaryrefslogtreecommitdiffstats
path: root/t/04-canonicalize-source.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04-canonicalize-source.t')
-rw-r--r--t/04-canonicalize-source.t31
1 files changed, 31 insertions, 0 deletions
diff --git a/t/04-canonicalize-source.t b/t/04-canonicalize-source.t
new file mode 100644
index 0000000..79c08a3
--- /dev/null
+++ b/t/04-canonicalize-source.t
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+use Eval::Closure;
+
+{
+ my $code = eval_closure(
+ source =>
+ 'sub {'
+ . '"foo"'
+ . '}',
+ );
+ ok($code, "got code");
+ is($code->(), "foo", "got the right code");
+}
+
+{
+ my $code = eval_closure(
+ source => [
+ 'sub {',
+ '"foo"',
+ '}',
+ ],
+ );
+ ok($code, "got code");
+ is($code->(), "foo", "got the right code");
+}
+
+done_testing;