Skip to content

Commit

Permalink
fixed META.info, added Test::META tests
Browse files Browse the repository at this point in the history
  • Loading branch information
daleevans committed Jan 9, 2016
1 parent 4527536 commit edf6fe3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
7 changes: 4 additions & 3 deletions META.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"name" : "Text::Spintax",
"version" : "0.01",
"description" : "A parser and renderer for spintax formatted text",
"author" : "Dale Evans",
"authors" : ["Dale Evans"],
"perl" : "6.c",
"source-url" : "https://github.com/daleevans/perl6-Text-Spintax",
"depends" : [ ],
"depends" : [ "Test::META" ],
"provides" : {
"Text::Spintax" : "Text-Spintax/lib/Text/Spintax.pm6"
"Text::Spintax" : "lib/Text/Spintax.pm6"
}
}

15 changes: 15 additions & 0 deletions t/meta.t
Original file line number Diff line number Diff line change
@@ -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 edf6fe3

Please sign in to comment.