summaryrefslogtreecommitdiff
path: root/xt/cli/deployment.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/cli/deployment.t')
-rw-r--r--xt/cli/deployment.t26
1 files changed, 26 insertions, 0 deletions
diff --git a/xt/cli/deployment.t b/xt/cli/deployment.t
new file mode 100644
index 0000000..175f87a
--- /dev/null
+++ b/xt/cli/deployment.t
@@ -0,0 +1,26 @@
+use strict;
+use Test::More;
+use xt::CLI;
+
+{
+ my $app = cli();
+ $app->write_cpanfile(<<EOF);
+requires 'Try::Tiny', '== 0.11';
+EOF
+
+ $app->run("install", "--deployment");
+ like $app->stderr, qr/deployment requires cpanfile\.snapshot/;
+
+ $app->run("install");
+ $app->clean_local;
+
+ $app->run("install", "--deployment");
+ $app->run("list");
+ like $app->stdout, qr/Try-Tiny-0\.11/;
+
+ $app->run("exec", "perl", "-e", "use Try::Tiny 2;");
+ like $app->stderr, qr/Try::Tiny.* version 0\.11/;
+}
+
+done_testing;
+