This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a commit to branch master
in repository carton.

commit dfadaeebafcf97c6d9a59bb7c05bb452abfe0363
Author: Tatsuhiko Miyagawa <miyag...@bulknews.net>
Date:   Mon Jul 22 10:08:56 2013 -0700

    unit test for without
---
 xt/cli/without.t | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/xt/cli/without.t b/xt/cli/without.t
new file mode 100644
index 0000000..f1d5b0e
--- /dev/null
+++ b/xt/cli/without.t
@@ -0,0 +1,39 @@
+use strict;
+use Test::More;
+use xt::CLI;
+
+subtest 'carton install and check' => sub {
+    my $app = cli();
+    $app->write_cpanfile(<<EOF);
+requires 'Try::Tiny';
+
+on 'develop' => sub {
+  requires 'Hash::MultiValue', '== 0.14';
+};
+EOF
+
+    $app->run("install");
+    $app->run("list");
+    like $app->stdout, qr/Try-Tiny-/;
+    like $app->stdout, qr/Hash-MultiValue-0\.14/;
+
+    $app->run("exec", "perl", "-e", "use Hash::MultiValue\ 1");
+    like $app->stderr, qr/Hash::MultiValue .* version 0.14/;
+
+    $app->clean_local;
+
+    $app->run("install", "--without", "develop");
+    $app->run("list");
+    like $app->stdout, qr/Try-Tiny-/;
+
+ TODO: {
+        local $TODO = "--without is not remembered for list";
+        unlike $app->stdout, qr/Hash-MultiValue-/;
+    }
+
+    $app->run("exec", "perl", "-e", "use Hash::MultiValue\ 1");
+    unlike $app->stderr, qr/Hash::MultiValue .* version 0.14/;
+};
+
+done_testing;
+

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/carton.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to