From 44eae7618800e0752958eeae0b2e7412ffee066c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 25 Dec 2014 16:29:16 -0500 Subject: [PATCH] Unit Tests - Implemented proper Test::More skipping. --- test/denotate.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/denotate.t b/test/denotate.t index b3ca2fd34..f4020e215 100755 --- a/test/denotate.t +++ b/test/denotate.t @@ -84,8 +84,10 @@ like ($output, qr/Bert.+\d{1,2}\/\d{1,2}\/\d{4} Kermit the frog/ms, "$ut if ($^O =~ /cygwin/) { - skip ("$ut: Denotate is case sensitive"); - skip ("$ut: Kermit the frog still second annoation"); + SKIP: + { + skip ("Skipping regex case-insensitive tests on Cygwin. Doesn't work.", 2); + } } else {