import all tests from Fun
[p5sagit/Function-Parameters.git] / t / foreign / Fun / compile-time.t
diff --git a/t/foreign/Fun/compile-time.t b/t/foreign/Fun/compile-time.t
new file mode 100644 (file)
index 0000000..5908b61
--- /dev/null
@@ -0,0 +1,12 @@
+#!perl
+use strict;
+use warnings FATAL => 'all';
+use Test::More;
+
+use Function::Parameters;
+
+is(foo(), "FOO");
+
+fun foo { "FOO" }
+
+done_testing;