summaryrefslogtreecommitdiffstats
path: root/t/fun/closure-proto.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-21 16:50:34 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-21 16:50:34 -0400
commit597610ad1c915a5b004148fdb3151b0cec976790 (patch)
tree9e3e002a3b536ea943d73b51c8318d08f3f6ecb9 /t/fun/closure-proto.t
parent336e491e532144d1c8a6e367409149e8d084fa1d (diff)
downloadparse-keyword-597610ad1c915a5b004148fdb3151b0cec976790.tar.gz
parse-keyword-597610ad1c915a5b004148fdb3151b0cec976790.zip
add tests for Fun
Diffstat (limited to 't/fun/closure-proto.t')
-rw-r--r--t/fun/closure-proto.t20
1 files changed, 20 insertions, 0 deletions
diff --git a/t/fun/closure-proto.t b/t/fun/closure-proto.t
new file mode 100644
index 0000000..bc9ede5
--- /dev/null
+++ b/t/fun/closure-proto.t
@@ -0,0 +1,20 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Test::More;
+use lib 't/fun/lib';
+
+use Fun;
+
+{
+ my $x = 10;
+
+ fun bar ($y) {
+ $x * $y
+ }
+}
+
+is(bar(3), 30);
+
+done_testing;