plan tests => 1;
$schema->storage->txn_begin;
my $patron = $builder->build_object({ class => 'Koha::Patrons' });
my $non_repeatable_type = $builder->build_object(
{
->discard_changes;
is( $non_repeatable_attr->attribute, 'HEY', 'Value stored correctly' );
$schema->storage->txn_rollback;
};
-