X-Git-Url: http://git.refcnt.org/?a=blobdiff_plain;f=t%2Ffail.t;h=10378c412548fc694ad1e711dbf3c983b19d82fd;hb=d9543bc46d5006a78001d6b0e5874ec89940fe4e;hp=0348201a12bccb377be2b6b6113d211ac9a921ba;hpb=f1c44195b0950ef15dc9108025dbc2251b274225;p=colorize.git diff --git a/t/fail.t b/t/fail.t index 0348201..10378c4 100755 --- a/t/fail.t +++ b/t/fail.t @@ -12,7 +12,7 @@ use IPC::Open3 qw(open3); use Symbol qw(gensym); use Test::More; -my $tests = 23; +my $tests = 25; my $run_program_fail = sub { @@ -42,7 +42,9 @@ 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' ], # handle comma + [ '--attr=bold,bold', 'has attribute \'bold\' twice or more' ], [ '--exclude-random=random', 'must be provided a plain color' ], [ '--clean --clean-all', 'mutually exclusive' ], [ '--clean file1 file2', 'more than one file' ],