From 110592da8ca2f4608f35b8057a4e72829d1844b8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 11 Jun 2014 06:22:30 -0400 Subject: [PATCH] Unit Tests - Removed obsolete test. --- test/bug.697.x | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/bug.697.x b/test/bug.697.x index 666a0a05c..9b42cec7b 100755 --- a/test/bug.697.x +++ b/test/bug.697.x @@ -27,14 +27,13 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 3; # Create the rc file. if (open my $fh, '>', 'bug.rc') { print $fh "data.location=.\n"; close $fh; - ok (-r 'bug.rc', 'Created bug.rc'); } # Bug 697: Making a blocking task recur breaks dependency. @@ -70,11 +69,5 @@ like ($output, qr/is blocked by\s+2/, 'verified 1 --> 2'); # Cleanup. unlink qw(pending.data completed.data undo.data backlog.data bug.rc); -ok (! -r 'pending.data' && - ! -r 'completed.data' && - ! -r 'undo.data' && - ! -r 'backlog.data' && - ! -r 'bug.rc', 'Cleanup'); - exit 0;