diff options
author | Steven Schubiger <stsc@refcnt.org> | 2017-04-17 17:45:48 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2017-04-17 17:45:48 +0200 |
commit | 061db3b04401177fa9348785f71c7c5cc4946142 (patch) | |
tree | 8db570c91b545386c95c53f999268fe2da844621 /t/fail.t | |
parent | 4848afa27f5788eba267c7e8508efdcb1fec41b3 (diff) | |
download | colorize-061db3b04401177fa9348785f71c7c5cc4946142.tar.gz colorize-061db3b04401177fa9348785f71c7c5cc4946142.tar.bz2 |
Test --attr failures
Diffstat (limited to 't/fail.t')
-rwxr-xr-x | t/fail.t | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -12,7 +12,7 @@ use IPC::Open3 qw(open3); use Symbol qw(gensym); use Test::More; -my $tests = 20; +my $tests = 23; my $run_program_fail = sub { @@ -40,6 +40,9 @@ SKIP: { my $dir = tempdir(CLEANUP => true); my @set = ( + [ '--attr=:', 'must be provided a string' ], + [ '--attr=bold:underscore', 'must have strings separated by ,' ], + [ '--attr=b0ld', 'must be provided valid attribute names' ], [ '--exclude-random=random', 'must be provided a plain color' ], [ '--clean --clean-all', 'mutually exclusive' ], [ '--clean file1 file2', 'more than one file' ], |