summaryrefslogtreecommitdiffstats
path: root/t/001-term.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-04-30 20:06:11 -0500
committerJesse Luehrs <doy@tozt.net>2010-04-30 20:09:40 -0500
commitddd601047a76fb519d4acba4c59d77ebfde1fa6e (patch)
tree2a5840e61ce7a6868d522015ddc74c0f938d9be5 /t/001-term.t
parentce489a3dcdcd8dcc1dec85b92698e0b94c85ca38 (diff)
downloadcarp-always-color-ddd601047a76fb519d4acba4c59d77ebfde1fa6e.tar.gz
carp-always-color-ddd601047a76fb519d4acba4c59d77ebfde1fa6e.zip
only color the actual warning/error
also clean up a couple more edge cases
Diffstat (limited to 't/001-term.t')
-rw-r--r--t/001-term.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/001-term.t b/t/001-term.t
index 07c2751..7c1977d 100644
--- a/t/001-term.t
+++ b/t/001-term.t
@@ -20,7 +20,7 @@ output_is(<<EOF,
use Carp::Always::Color::Term;
warn "foo";
EOF
- "\e[33mfoo at -e line 2\e[m\n",
+ "\e[33mfoo\e[m at -e line 2\n",
"simple warns work");
output_is(<<EOF,
@@ -30,14 +30,14 @@ output_is(<<EOF,
}
foo();
EOF
- "\e[33mfoo at -e line 3\e[m\n\tmain::foo() called at -e line 5\n",
+ "\e[33mfoo\e[m at -e line 3\n\tmain::foo() called at -e line 5\n",
"warns with a stacktrace work");
output_is(<<EOF,
use Carp::Always::Color::Term;
die "foo";
EOF
- "\e[31mfoo at -e line 2\e[m\n",
+ "\e[31mfoo\e[m at -e line 2\n",
"simple dies work");
output_is(<<EOF,
@@ -47,5 +47,5 @@ output_is(<<EOF,
}
foo();
EOF
- "\e[31mfoo at -e line 3\e[m\n\tmain::foo() called at -e line 5\n",
+ "\e[31mfoo\e[m at -e line 3\n\tmain::foo() called at -e line 5\n",
"dies with a stacktrace work");