File: unit-relative.t

package info (click to toggle)
libtest-fitesque-rdf-perl 0.100-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: perl: 243; makefile: 4
file content (58 lines) | stat: -rw-r--r-- 1,051 bytes parent folder | download | duplicates (2)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
=pod

=encoding utf-8

=head1 PURPOSE

Simple unit test that Test::FITesque::RDF transforms data correctly from RDF

=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::Modern;
use Test::Deep;
use FindBin qw($Bin);


my $file = $Bin . '/data/relative.ttl';

use Test::FITesque::RDF;


my $t = object_ok(
						sub { Test::FITesque::RDF->new(source => $file,
																 base_uri => 'http://example.org/') }, '$t',
						isa => [qw(Test::FITesque::RDF Moo::Object)],
						can => [qw(source suite transform_rdf base_uri)]);




my $data = $t->transform_rdf;
cmp_deeply($data, [
			  [ [ 'Internal::Fixture::Simple' ],
				 [ 'relative_uri',
					{
					 '-special' => { 'description' => 'Check that a relative URI resolves' },
					 'url' => all(isa('URI'), methods(as_string => 'http://example.org/foo/'))
					}
				 ]
			  ] ]);


done_testing;