steal more tests from other modules
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / required.t
diff --git a/t/foreign/Method-Signatures/required.t b/t/foreign/Method-Signatures/required.t
new file mode 100644 (file)
index 0000000..1f269bf
--- /dev/null
@@ -0,0 +1,34 @@
+#!perl
+
+use strict;
+use warnings FATAL => 'all';
+
+use Test::More;
+
+
+{
+    package Stuff;
+
+    use Test::More;
+    use Test::Fatal;
+    use Function::Parameters qw(:strict);
+
+    method whatever($this) {
+        return $this;
+    }
+
+    is( Stuff->whatever(23),    23 );
+
+    like exception { Stuff->whatever() }, qr/Not enough arguments/;
+
+    method some_optional($that, $this = 22) {
+        return $that + $this
+    }
+
+    is( Stuff->some_optional(18), 18 + 22 );
+
+    like exception { Stuff->some_optional() }, qr/Not enough arguments/;
+}
+
+
+done_testing();