Lines 203-213
subtest 'maxlength + enum' => sub {
Link Here
|
203 |
my $def_map = { |
203 |
my $def_map = { |
204 |
|
204 |
|
205 |
# api def => schema |
205 |
# api def => schema |
206 |
item => 'Item', |
206 |
item => 'Item', |
207 |
library => 'Branch', |
207 |
library => 'Branch', |
208 |
patron => 'Borrower', |
208 |
patron => 'Borrower', |
209 |
patron_category => 'Category', |
209 |
patron_category => 'Category', |
210 |
vendor => 'Aqbookseller', |
210 |
vendor => 'Aqbookseller', |
|
|
211 |
erm_eholdings_title => 'ErmEholdingsTitle' |
211 |
}; |
212 |
}; |
212 |
plan tests => scalar keys %$def_map; |
213 |
plan tests => scalar keys %$def_map; |
213 |
my $schema = Koha::Database->new->schema; |
214 |
my $schema = Koha::Database->new->schema; |
214 |
- |
|
|