Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Releng and adding meta.t
  • Loading branch information
zostay committed Dec 11, 2016
1 parent a5a6d3d commit f2ce4f8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions META6.json
Expand Up @@ -2,7 +2,7 @@
"perl" : "6",
"name" : "IO::Glob",
"auth" : "github:zostay",
"version" : "v0.2",
"version" : "v0.3",
"description" : "Glob matching for paths & strings and listing files",
"authors" : [
"Andrew Sterling Hanenkamp <hanenkamp@cpan.org>",
Expand All @@ -20,7 +20,7 @@
"IO::Glob::BSD": "lib/IO/Glob.pm6",
"IO::Glob::SQL": "lib/IO/Glob.pm6"
},
"depends" : [],
"depends" : [ "Test", "Test::META" ],
"source-url" : "git://github.com/zostay/perl6-IO-Glob.git",
"support" : {
"bugtracker" : "https://github.com/zostay/perl6-IO-Glob/issues",
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Glob.pm6
@@ -1,4 +1,4 @@
unit class IO::Glob:auth<github:zostay>:ver<0.1> does Iterable;
unit class IO::Glob:auth<github:zostay>:ver<0.3> does Iterable;

use v6;

Expand Down
15 changes: 15 additions & 0 deletions t/meta.t
@@ -0,0 +1,15 @@
#!perl6

use v6;
use lib 'lib';

use Test;
use Test::META;

plan 1;

# That's it
meta-ok();


done-testing;

0 comments on commit f2ce4f8

Please sign in to comment.