[Bps-public-commit] Plack-Middleware-Test-StashWarnings branch, master, updated. 96455460bddf90296c47b4653821273ce95d31b4
Shawn Moore
sartak at bestpractical.com
Mon Oct 18 06:27:26 EDT 2010
The branch, master has been updated
via 96455460bddf90296c47b4653821273ce95d31b4 (commit)
via 48c223da9d7199751254e4bd36aefcef93a208bd (commit)
via af4ac57c51bd2d9ee1b43b7675910dbe8ef4080a (commit)
via 896c6cbc19d93a0f8584fb3c0000c87c3c02d9cd (commit)
from 91ca7dae4439315b833f846e0eac8c7d9a7df67d (commit)
Summary of changes:
.gitignore | 1 +
Makefile.PL | 6 +++++-
README | 6 +++---
xt/synopsis.t | 4 ----
4 files changed, 9 insertions(+), 8 deletions(-)
delete mode 100644 xt/synopsis.t
- Log -----------------------------------------------------------------
commit 896c6cbc19d93a0f8584fb3c0000c87c3c02d9cd
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Oct 18 19:25:16 2010 +0900
No more synopsis test
diff --git a/xt/synopsis.t b/xt/synopsis.t
deleted file mode 100644
index 07aa750..0000000
--- a/xt/synopsis.t
+++ /dev/null
@@ -1,4 +0,0 @@
-use Test::More;
-eval "use Test::Synopsis";
-plan skip_all => "Test::Synopsis required" if $@;
-all_synopsis_ok();
commit af4ac57c51bd2d9ee1b43b7675910dbe8ef4080a
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Oct 18 19:26:00 2010 +0900
More deps
diff --git a/Makefile.PL b/Makefile.PL
index 59acb0e..a4a239e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,8 +5,12 @@ readme_from 'lib/Plack/Middleware/Test/StashWarnings.pm';
repository 'http://github.com/bestpractical/plack-middleware-test-stashwarnings';
requires 'Storable';
-requires 'Plack::Test';
+requires 'Plack';
+
test_requires 'Test::More';
+test_requires 'Plack::Test';
+test_requires 'Plack::Request';
+test_requires 'HTTP::Request::Common';
author_tests('xt');
commit 48c223da9d7199751254e4bd36aefcef93a208bd
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Oct 18 19:26:51 2010 +0900
ignore manifest
diff --git a/.gitignore b/.gitignore
index 0b51617..0ccf311 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
META.yml
+MANIFEST
Makefile
inc/
blib/
commit 96455460bddf90296c47b4653821273ce95d31b4
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Oct 18 19:26:56 2010 +0900
Regenerate README
diff --git a/README b/README
index f4accdb..a192c52 100644
--- a/README
+++ b/README
@@ -8,7 +8,7 @@ SYNOPSIS
use Storable 'thaw';
$mech->get('/__test_warnings');
- my @warnings = thaw($mech->content);
+ my @warnings = @{ thaw($mech->content) };
like(@warnings[0], qr/No private key/);
DESCRIPTION
@@ -19,8 +19,8 @@ DESCRIPTION
AUTHOR
Shawn M Moore "sartak at bestpractical.com"
- Tatsuhiko Miyagawa wrote Plack::Middleware::Test::Recordings which
- served as a model for this module.
+ Tatsuhiko Miyagawa wrote Plack::Middleware::Test::Recorder which served
+ as a model for this module.
LICENSE
This library is free software; you can redistribute it and/or modify it
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list