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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
=pod
=encoding utf-8
=head1 PURPOSE
Integration tests using Test::FITesque::Test with HTTP formulated as RDF data to see tests actually working
=head1 AUTHOR
Kjetil Kjernsmo E<lt>kjetilk@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is Copyright (c) 2019 by Inrupt Inc.
This is free software, licensed under:
The MIT (X11) License
=cut
use strict;
use warnings;
use Test::More;
use FindBin qw($Bin);
use Test::FITesque;
use Test::FITesque::Test;
use lib 't/lib';
my $file = $Bin . '/data/http-list.ttl';
use Test::FITesque::RDF;
my $suite = Test::FITesque::RDF->new(source => $file)->suite;
$suite->run_tests;
done_testing;
|