diff options
author | Matias Linares <matiaslina@gmail.com> | 2019-04-13 20:13:03 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2019-04-13 20:13:03 -0300 |
commit | 4c21236e12cf8a4eb71380438f3dc940d8afd958 (patch) | |
tree | 3ea1eb62771982a59fc6fa185c1d42fbb364fc9d /t | |
parent | 7e3ec5cd9242c24d364ee78d9398650fbf06cf1a (diff) | |
download | perl6-pygments-4c21236e12cf8a4eb71380438f3dc940d8afd958.tar.gz |
Add META tests
Diffstat (limited to 't')
-rw-r--r-- | t/02-meta.t | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/t/02-meta.t b/t/02-meta.t new file mode 100644 index 0000000..cd334ce --- /dev/null +++ b/t/02-meta.t @@ -0,0 +1,11 @@ +use v6; +use lib 'lib'; + +use Test; +use Test::META; + +plan 1; + +meta-ok; + +done-testing; |