Skip to content

Commit

Permalink
Add dzil stuff, rename test.pl so dzil test doesn't try to run it
Browse files Browse the repository at this point in the history
  • Loading branch information
arodland committed Jul 1, 2010
1 parent ed026cc commit d8d397c
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,6 +6,7 @@ blib/
pm_to_blib
Build
_build
.build
cover_db/
nytprof*
*.patch
Expand Down
19 changes: 19 additions & 0 deletions dist.ini
@@ -0,0 +1,19 @@
name = TAP-Spec-Parser
author = Andrew Rodland <arodland@cpan.org>
license = Perl_5
copyright_holder = Andrew Rodland
version = 0.01

[@Basic]

[AutoPrereq]
[PodWeaver]
[PkgVersion]
[Repository]

[Git::Commit]
[Git::Tag]

[Prereqs / TestRequires]
Path::Class = 0
YAML::Any = 0
File renamed without changes.
1 change: 1 addition & 0 deletions lib/TAP/Spec/BailOut.pm
@@ -1,4 +1,5 @@
package TAP::Spec::BailOut;
# ABSTRACT: A TAP Bail Out! line
use Moose;
use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Body.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Body;
# ABSTRACT: The main body of a TAP testset
use Moose;
use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Comment.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Comment;
# ABSTRACT: A comment in a TAP stream
use Moose;
use namespace::autoclean;

Expand Down
2 changes: 1 addition & 1 deletion lib/TAP/Spec/Footer.pm
@@ -1,5 +1,5 @@
package TAP::Spec::Footer;

# ABSTRACT: Trailing information in a TAP stream
use Moose;
use namespace::autoclean;

Expand Down
2 changes: 1 addition & 1 deletion lib/TAP/Spec/Header.pm
@@ -1,5 +1,5 @@
package TAP::Spec::Header;

# ABSTRACT: Information at the beginning of a TAP stream
use Moose;
use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Parser.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Parser;
# ABSTRACT: Reference implementation of the TAP specification
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion lib/TAP/Spec/Plan.pm
@@ -1,5 +1,5 @@
package TAP::Spec::Plan;

# ABSTRACT: A TAP test plan
use Moose;
use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Plan/Simple.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Plan::Simple;
# ABSTRACT: A basic TAP plan with a number of tests
use Moose;
use namespace::autoclean;
extends 'TAP::Spec::Plan';
Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Plan/SkipAll.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Plan::SkipAll;
# ABSTRACT: A TAP plan indicating that all tests were skipped
use Moose;
use namespace::autoclean;
extends 'TAP::Spec::Plan';
Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Plan/Todo.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Plan::Todo;
# ABSTRACT: A legacy TAP plan indicating TODO tests
use Moose;
use namespace::autoclean;
extends 'TAP::Spec::Plan::Simple';
Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/TestResult.pm
@@ -1,4 +1,5 @@
package TAP::Spec::TestResult;
# ABSTRACT: The results of a single test
use Moose;
use Moose::Util::TypeConstraints;
use namespace::autoclean;
Expand Down
2 changes: 1 addition & 1 deletion lib/TAP/Spec/TestSet.pm
@@ -1,5 +1,5 @@
package TAP::Spec::TestSet;

# ABSTRACT: A set of related TAP tests
use Moose;
use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/TAP/Spec/Version.pm
@@ -1,4 +1,5 @@
package TAP::Spec::Version;
# ABSTRACT: A TAP version number specification
use Moose;
use namespace::autoclean;

Expand Down

0 comments on commit d8d397c

Please sign in to comment.