diff options
author | Steven Schubiger <stsc@refcnt.org> | 2024-07-25 14:35:26 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2024-07-25 14:35:26 +0200 |
commit | 369e45fece49bb8487b8924a0851cc0ef8c6fbb8 (patch) | |
tree | d59932c0ba5c338e06490c3fab762836d16c1616 /t/conf/fail.t | |
parent | 743e75340d0882c7338eee51e03148984774a532 (diff) | |
download | colorize-369e45fece49bb8487b8924a0851cc0ef8c6fbb8.tar.gz colorize-369e45fece49bb8487b8924a0851cc0ef8c6fbb8.tar.bz2 |
Add initial implementation of foreground color rainbow mode
Diffstat (limited to 't/conf/fail.t')
-rwxr-xr-x | t/conf/fail.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/conf/fail.t b/t/conf/fail.t index d3b8852..9e16a49 100755 --- a/t/conf/fail.t +++ b/t/conf/fail.t @@ -12,7 +12,7 @@ use IPC::Open3 qw(open3); use Symbol qw(gensym); use Test::More; -my $tests = 7; +my $tests = 8; my $run_program_fail = sub { @@ -46,6 +46,7 @@ SKIP: { [ 'attr=bold,bold', 'attr conf option has attribute \'bold\' twice or more' ], [ 'exclude-random=random', 'exclude-random conf option must be provided a plain color' ], [ 'omit-color-empty=unsure', 'omit-color-empty conf option is not valid' ], + [ 'rainbow-fg=unsure', 'rainbow-fg conf option is not valid' ], ); foreach my $set (@set) { open(my $fh, '>', $conf_file) or die "Cannot open `$conf_file' for writing: $!\n"; |