File: load-http.t

package info (click to toggle)
libjson-validator-perl 3.06%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 616 kB
  • sloc: perl: 1,308; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Mojo::Base -strict;
use Test::More;
use JSON::Validator;

plan skip_all => 'TEST_ONLINE=1' unless $ENV{TEST_ONLINE};

my $validator = JSON::Validator->new;

$validator->schema('http://swagger.io/v2/schema.json');

isa_ok($validator->schema, 'Mojo::JSON::Pointer');
like $validator->schema->get('/title'), qr{swagger}i, 'got swagger spec';
ok $validator->schema->get('/patternProperties/^x-/description'),
  'resolved vendorExtension $ref';

done_testing;