summaryrefslogblamecommitdiffstats
path: root/t/stringify.t
blob: 0925c843a6f5517f3c0fc15afe5804aec8ed3e77 (plain) (tree)


















                                                        
         
                  








                                                   




                              
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

use Moose::Util::TypeConstraints 'find_type_constraint';

use MooseX::Validation::Doctypes;

doctype 'Person' => {
    id    => 'Str',
    name  => 'Str',
    title => 'Str',
};

{
    my $person = find_type_constraint('Person');
    my $errors = $person->validate({ foo => "bar" });

    like(
        "$errors",
        qr[
            invalid\ value\ undef\ for\ 'id'     \n
            invalid\ value\ undef\ for\ 'name'   \n
            invalid\ value\ undef\ for\ 'title'  \n
            extra\ data\ found:                  \n
            \s* {                            \s*
              'foo' \s* => \s* 'bar'         \s*
            \s* }
        ]x,
        "stringified properly"
    );
}

done_testing;