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/param.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/param.t')
-rwxr-xr-x | t/conf/param.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/conf/param.t b/t/conf/param.t index 520df2b..f8f535f 100755 --- a/t/conf/param.t +++ b/t/conf/param.t @@ -14,14 +14,15 @@ my $conf = <<'EOT'; attr=bold color=blue omit-color-empty=yes +rainbow-fg=yes EOT my $expected = <<"EOT"; \e[1;34mfoo\e[0m -\e[1;34mbar\e[0m +\e[1;35mbar\e[0m -\e[1;34mbaz\e[0m +\e[1;36mbaz\e[0m EOT plan tests => $tests; |