-
Notifications
You must be signed in to change notification settings - Fork 194
/
Copy pathtypes.t
92 lines (85 loc) · 2.79 KB
/
types.t
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
use strict;
use warnings;
use MetaCPAN::Types::TypeTiny qw( Resources );
use Test::More;
is_deeply(
Resources->coerce( {
license => ['http://dev.perl.org/licenses/'],
homepage => 'http://sourceforge.net/projects/module-build',
bugtracker => {
web => 'http://github.com/dagolden/cpan-meta-spec/issues',
mailto => '[email protected]',
},
repository => {
url => 'git://github.com/dagolden/cpan-meta-spec.git',
web => 'http://github.com/dagolden/cpan-meta-spec',
type => 'git',
},
x_twitter => 'http://twitter.com/cpan_linked/',
} ),
{
license => ['http://dev.perl.org/licenses/'],
homepage => 'http://sourceforge.net/projects/module-build',
bugtracker => {
web => 'http://github.com/dagolden/cpan-meta-spec/issues',
mailto => '[email protected]',
},
repository => {
url => 'git://github.com/dagolden/cpan-meta-spec.git',
web => 'http://github.com/dagolden/cpan-meta-spec',
type => 'git',
}
},
'coerce CPAN::Meta::Spec example'
);
ok(
Resources->check( Resources->coerce( {
license => ['http://dev.perl.org/licenses/'],
homepage => 'http://sourceforge.net/projects/module-build',
bugtracker => {
web => 'http://github.com/dagolden/cpan-meta-spec/issues',
mailto => '[email protected]',
},
repository => {
url => 'git://github.com/dagolden/cpan-meta-spec.git',
web => 'http://github.com/dagolden/cpan-meta-spec',
type => 'git',
},
x_twitter => 'http://twitter.com/cpan_linked/',
} ) ),
'check CPAN::Meta::Spec example'
);
is_deeply(
Resources->coerce( {
license => ['http://dev.perl.org/licenses/'],
homepage => 'http://sourceforge.net/projects/module-build',
} ),
{
homepage => 'http://sourceforge.net/projects/module-build',
license => ['http://dev.perl.org/licenses/'],
},
'coerce sparse resources'
);
ok(
Resources->check( {
license => ['http://dev.perl.org/licenses/'],
homepage => 'http://sourceforge.net/projects/module-build',
} ),
'check sparse resources'
);
ok(
Resources->check( {
bugtracker => {
web =>
'https://github.com/AlexBio/Dist-Zilla-Plugin-GitHub/issues'
},
homepage => 'http://search.cpan.org/dist/Dist-Zilla-Plugin-GitHub/',
repository => {
type => 'git',
url => 'git://github.com/AlexBio/Dist-Zilla-Plugin-GitHub.git',
web => 'https://github.com/AlexBio/Dist-Zilla-Plugin-GitHub'
}
} ),
'sparse'
);
done_testing;