File: 90-rand-bugfixes.t

package info (click to toggle)
libvalidation-class-perl 7.900057-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,572 kB
  • ctags: 355
  • sloc: perl: 21,493; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
BEGIN {

    use FindBin;
    use lib $FindBin::Bin . "/myapp/lib";

}

use utf8;
use Test::More;

{

    package TestClass::GithubIssue16;
    use Validation::Class;

    fld name => {required => 1};

    package main;

    my $class = "TestClass::GithubIssue16";
    my $self = $class->new(ignore_unknown => 1, report_unknown => 1);

    ok $class eq ref $self, "$class instantiated";

    ok !$self->validate('+name'), 'name exists and is invalid';
    ok !$self->validate('+abcd'), 'abcd does not exist and is invalid';

    $self->ignore_unknown(0);
    $self->report_unknown(0);

    eval { $self->validate('+abcd') };

    ok $@, 'abcd does not exist and terminates';

}

done_testing;