summary refs log tree commit diff
path: root/t/02_fail.t
diff options
context:
space:
mode:
Diffstat (limited to 't/02_fail.t')
-rw-r--r--t/02_fail.t13
1 files changed, 0 insertions, 13 deletions
diff --git a/t/02_fail.t b/t/02_fail.t
deleted file mode 100644
index f73cad9..0000000
--- a/t/02_fail.t
+++ /dev/null
@@ -1,13 +0,0 @@
-use strict;
-use warnings;
-use Test::More;
-use Test::Exception;
-use lib ('t/lib');
-
-dies_ok { require FakeAPIFail }
-"... can't declare a required param that have not been declared";
-
-dies_ok {require FakeAPIFail2 }
-"... can't declare a required param that have not been declared";
-
-done_testing;