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
|
# vim: set ts=8 sts=2 sw=2 tw=100 et :
use strict;
use warnings;
no if "$]" >= 5.031009, feature => 'indirect';
no if "$]" >= 5.033001, feature => 'multidimensional';
no if "$]" >= 5.033006, feature => 'bareword_filehandles';
use Test::More 0.88;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
use Test::Deep;
use Test::JSON::Schema::Acceptance;
my $accepter = Test::JSON::Schema::Acceptance->new(
test_dir => 't/tests/include_optional',
include_optional => 1,
);
cmp_deeply(
$accepter->_test_data,
[
{ file => str('foo.json'), json => ignore },
{ file => str('zulu.json'), json => ignore },
{ file => str('extra/foo.json'), json => ignore },
{ file => str('optional/alpha.json'), json => ignore },
{ file => str('optional/beta.json'), json => ignore },
],
'picked up optional files in test_data, in the correct order',
);
done_testing;
|