We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128e675 commit 9f7abadCopy full SHA for 9f7abad
MANIFEST
@@ -32,6 +32,8 @@ t/db-hash.t
32
t/db-recno.t
33
t/db-threads.t
34
t/pod.t
35
+t/meta-json.t
36
+t/meta-yaml.t
37
typemap
38
version.c
39
META.yml Module meta-data (added by MakeMaker)
t/meta-json.t
@@ -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
+eval "use Test::CPAN::Meta";
+plan skip_all => "Test::CPAN::Meta required for testing META.yml" if $@;
+meta_yaml_ok();
0 commit comments