summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-07-19 22:32:56 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-07-19 22:32:56 -0700
commit43e06abdb2dc49f7af662418a8d83cc221bb90c7 (patch)
tree774c0d6f296d2e41e51a0ed29ab1bac60e9673e6
parentfa4d8497ac4080d638c98a197bbb1f4236db7892 (diff)
downloadcarton-1.0.tar.gz
update Try::Tiny1.0
-rw-r--r--xt/cli/check.t4
-rw-r--r--xt/cli/update.t4
2 files changed, 4 insertions, 4 deletions
diff --git a/xt/cli/check.t b/xt/cli/check.t
index 6fa9e7c..949cca8 100644
--- a/xt/cli/check.t
+++ b/xt/cli/check.t
@@ -27,7 +27,7 @@ EOF
like $app->stdout, qr/Try-Tiny-0\.11/;
$app->write_cpanfile(<<EOF);
-requires 'Try::Tiny', '0.12';
+requires 'Try::Tiny', '0.16';
EOF
$app->run("check");
@@ -45,7 +45,7 @@ EOF
like $app->stdout, qr/are satisfied/;
$app->run("list");
- like $app->stdout, qr/Try-Tiny-0\.12/;
+ like $app->stdout, qr/Try-Tiny-0\.16/;
$app->write_cpanfile(<<EOF);
requires 'Try::Tiny', '10.00';
diff --git a/xt/cli/update.t b/xt/cli/update.t
index a6c94c1..39f0395 100644
--- a/xt/cli/update.t
+++ b/xt/cli/update.t
@@ -50,11 +50,11 @@ subtest 'downgrade a distribution' => sub {
my $app = cli();
$app->write_cpanfile(<<EOF);
-requires 'Try::Tiny', '0.12';
+requires 'Try::Tiny', '0.16';
EOF
$app->run("install");
$app->run("list");
- like $app->stdout, qr/Try-Tiny-0\.12/;
+ like $app->stdout, qr/Try-Tiny-0\.16/;
$app->write_cpanfile(<<EOF);
requires 'Try::Tiny', '== 0.09';