Lines 15-20
Link Here
|
15 |
use Modern::Perl; |
15 |
use Modern::Perl; |
16 |
|
16 |
|
17 |
use Test::More tests => 8; |
17 |
use Test::More tests => 8; |
|
|
18 |
|
18 |
use Test::NoWarnings; |
19 |
use Test::NoWarnings; |
19 |
|
20 |
|
20 |
use Test::Mojo; |
21 |
use Test::Mojo; |
Lines 206-211
subtest 'maxlength + enum' => sub {
Link Here
|
206 |
library => 'Branch', |
207 |
library => 'Branch', |
207 |
patron => 'Borrower', |
208 |
patron => 'Borrower', |
208 |
patron_category => 'Category', |
209 |
patron_category => 'Category', |
|
|
210 |
vendor => 'Aqbookseller', |
209 |
}; |
211 |
}; |
210 |
plan tests => scalar keys %$def_map; |
212 |
plan tests => scalar keys %$def_map; |
211 |
my $schema = Koha::Database->new->schema; |
213 |
my $schema = Koha::Database->new->schema; |
212 |
- |
|
|