diff options
author | Steven Schubiger <stsc@refcnt.org> | 2017-08-01 21:55:21 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2017-08-01 21:55:21 +0200 |
commit | 13b184a21e6ede64a9cf16f20dd774ea8cd45c4f (patch) | |
tree | 2637e36f6a9b7df20623980171ee17ccde7fc7c5 /t | |
parent | c44419169f25ee8a0fddfb78ffe4cc6f240a1699 (diff) | |
download | colorize-13b184a21e6ede64a9cf16f20dd774ea8cd45c4f.tar.gz colorize-13b184a21e6ede64a9cf16f20dd774ea8cd45c4f.tar.bz2 |
Enhance message if attribute is invalid
Diffstat (limited to 't')
-rwxr-xr-x | t/fail.t | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12,7 +12,7 @@ use IPC::Open3 qw(open3); use Symbol qw(gensym); use Test::More; -my $tests = 24; +my $tests = 25; my $run_program_fail = sub { @@ -42,7 +42,8 @@ SKIP: { my @set = ( [ '--attr=:', 'must be provided a string' ], [ '--attr=bold:underscore', 'must have strings separated by ,' ], - [ '--attr=b0ld', 'must be provided valid attribute names' ], + [ '--attr=b0ld', 'attribute \'b0ld\' is not valid' ], + [ '--attr=b0ld,underscore', 'attribute \'b0ld\' is not valid' ], # NULify comma [ '--attr=bold,bold', 'has attribute \'bold\' twice or more' ], [ '--exclude-random=random', 'must be provided a plain color' ], [ '--clean --clean-all', 'mutually exclusive' ], |