Skip to content

Commit 9f7abad

Browse files
committed
Add meta-*.t files
1 parent 128e675 commit 9f7abad

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

MANIFEST

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ t/db-hash.t
3232
t/db-recno.t
3333
t/db-threads.t
3434
t/pod.t
35+
t/meta-json.t
36+
t/meta-yaml.t
3537
typemap
3638
version.c
3739
META.yml Module meta-data (added by MakeMaker)

t/meta-json.t

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
use Test::More;
2+
eval "use Test::CPAN::Meta::JSON";
3+
plan skip_all => "Test::CPAN::Meta::JSON required for testing META.json" if $@;
4+
meta_json_ok();

t/meta-yaml.t

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
use Test::More;
2+
eval "use Test::CPAN::Meta";
3+
plan skip_all => "Test::CPAN::Meta required for testing META.yml" if $@;
4+
meta_yaml_ok();

0 commit comments

Comments
 (0)