]> Dogcows Code - chaz/p5-CGI-Ex/blobdiff - t/1_validate_00_base.t
CGI::Ex 2.00
[chaz/p5-CGI-Ex] / t / 1_validate_00_base.t
index d8ea8df2bc7eb3a2dbcb7d89806273301f2e56fa..12a1b0c2a5d57d8359f204e97c710ae9ac4d5b6e 100644 (file)
@@ -1,8 +1,39 @@
+# -*- Mode: Perl; -*-
 
-BEGIN {
-       print "1..1\n";
-}
+=head1 NAME
 
-use CGI::Ex::Validate;
+1_validate_00_base.t - Test CGI::Ex::Validate's ability to compile and execute
 
-BEGIN { print "ok 1\n"; }
+=cut
+
+use strict;
+use Test::More tests => 3;
+
+use_ok('CGI::Ex::Validate');
+
+my $form = {
+  user => 'abc',
+  pass => '123',
+};
+my $val = {
+  user => {
+    required => 1,
+  },
+  pass => {
+    required => 1,
+  },
+};
+
+my $err_obj = CGI::Ex::Validate::validate($form, $val);
+ok(! $err_obj, "Basic function works");
+
+###----------------------------------------------------------------###
+
+$form = {
+  user => 'abc',
+#  pass => '123',
+};
+
+$err_obj = CGI::Ex::Validate::validate($form,$val);
+
+ok($err_obj, "Successfully failed");
This page took 0.018013 seconds and 4 git commands to generate.