aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-08-13 12:53:06 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-08-13 12:53:06 +0200
commitbb4aa6f01a066bb5b35fc8aed08a0ecfa8334eb3 (patch)
tree6748c06e7dcccccf801cfcfd6fbe511681f6f305 /t
parentf0b53fdfca55c00bbefdd5ba09e90860ffd6215d (diff)
downloadsbotools2-bb4aa6f01a066bb5b35fc8aed08a0ecfa8334eb3.tar.xz
20-config.t: add comments about which tests are where
Diffstat (limited to 't')
-rwxr-xr-xt/20-config.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/20-config.t b/t/20-config.t
index a80d421..dccc0f0 100755
--- a/t/20-config.t
+++ b/t/20-config.t
@@ -10,6 +10,7 @@ use Test::Sbotools qw/ sboconfig /;
plan tests => 9;
+# 1-7: test invalid arguments
sboconfig '-c', 'invalid', { exit => 1, expected => "You have provided an invalid parameter for -c\n" };
sboconfig '-d', 'invalid', { exit => 1, expected => "You have provided an invalid parameter for -d\n" };
sboconfig '-j', 'invalid', { exit => 1, expected => "You have provided an invalid parameter for -j\n" };
@@ -18,6 +19,7 @@ sboconfig '-s', 'invalid', { exit => 1, expected => "You have provided an invali
sboconfig '-o', 'invalid', { exit => 1, expected => "You have provided an invalid parameter for -o\n" };
sboconfig '-V', 'invalid', { exit => 1, expected => "You have provided an invalid parameter for -V\n" };
+# 8-9: move original dir away and run tests on the config file
SKIP: {
skip "Only run this test under Travis CI", 2 unless $ENV{TRAVIS};