[Bps-public-commit] Path-Dispatcher branch, master, updated. adb2b2565c9c68bd7381f977d59e44ed92906d70
sartak at bestpractical.com
sartak at bestpractical.com
Fri Mar 6 19:41:08 EST 2009
The branch, master has been updated
via adb2b2565c9c68bd7381f977d59e44ed92906d70 (commit)
via ee80012ad54bc9367a8f80a67b344062f227a501 (commit)
from a8e0cb12bcebd2d459f8173ee375bee3614f22c5 (commit)
Summary of changes:
.gitignore | 3 +++
t/020-chain.t | 6 ++----
t/100-declarative.t | 1 -
t/800-cb-slash-path-delimiter.t | 3 +--
t/801-cb-chaining.t | 3 +--
5 files changed, 7 insertions(+), 9 deletions(-)
create mode 100644 .gitignore
- Log -----------------------------------------------------------------
commit ee80012ad54bc9367a8f80a67b344062f227a501
Author: Shawn M Moore <sartak at gmail.com>
Date: Fri Mar 6 19:40:47 2009 -0500
Always use a plan
diff --git a/t/020-chain.t b/t/020-chain.t
index d8f1a1a..f775401 100644
--- a/t/020-chain.t
+++ b/t/020-chain.t
@@ -1,8 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-#use Test::More tests => 15;
-use Test::More; plan qw/no_plan/;
+use Test::More tests => 40;
use Path::Dispatcher;
my $predicate = Path::Dispatcher::Rule::Tokens->new(
@@ -10,8 +9,7 @@ my $predicate = Path::Dispatcher::Rule::Tokens->new(
prefix => 1,
);
-my $chain = Path::Dispatcher::Rule::Chain->new(
-);
+my $chain = Path::Dispatcher::Rule::Chain->new;
my $create = Path::Dispatcher::Rule::Tokens->new(
tokens => ['create'],
diff --git a/t/100-declarative.t b/t/100-declarative.t
index 779fa17..434cd31 100644
--- a/t/100-declarative.t
+++ b/t/100-declarative.t
@@ -2,7 +2,6 @@
use strict;
use warnings;
use Test::More tests => 11;
-#use Test::More plan => qw/no_plan/;
my @calls;
diff --git a/t/800-cb-slash-path-delimiter.t b/t/800-cb-slash-path-delimiter.t
index de87290..44bdbb8 100644
--- a/t/800-cb-slash-path-delimiter.t
+++ b/t/800-cb-slash-path-delimiter.t
@@ -1,8 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-#use Test::More tests => 11;
-use Test::More; plan qw/no_plan/;
+use Test::More tests => 3;
my @result;
diff --git a/t/801-cb-chaining.t b/t/801-cb-chaining.t
index 11e0d93..415c0df 100644
--- a/t/801-cb-chaining.t
+++ b/t/801-cb-chaining.t
@@ -1,8 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-#use Test::More tests => 11;
-use Test::More; plan qw/no_plan/;
+use Test::More tests => 3;
my @result;
commit adb2b2565c9c68bd7381f977d59e44ed92906d70
Author: Shawn M Moore <sartak at gmail.com>
Date: Fri Mar 6 19:41:04 2009 -0500
.gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c300104
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+Makefile
+blib/
+pm_to_blib
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list