From fd4a0ad2fe858ba923babd6415ce0e736d1c15e2 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 12 Jul 2015 17:04:24 -0400 Subject: [PATCH] Test: bug.703.t is duplicated in substitute.t --- test/bug.703.t | 72 -------------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100755 test/bug.703.t diff --git a/test/bug.703.t b/test/bug.703.t deleted file mode 100755 index 7d5b04423..000000000 --- a/test/bug.703.t +++ /dev/null @@ -1,72 +0,0 @@ -#! /usr/bin/env perl -################################################################################ -## -## Copyright 2006 - 2015, Paul Beckingham, Federico Hernandez. -## -## Permission is hereby granted, free of charge, to any person obtaining a copy -## of this software and associated documentation files (the "Software"), to deal -## in the Software without restriction, including without limitation the rights -## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -## copies of the Software, and to permit persons to whom the Software is -## furnished to do so, subject to the following conditions: -## -## The above copyright notice and this permission notice shall be included -## in all copies or substantial portions of the Software. -## -## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -## OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -## SOFTWARE. -## -## http://www.opensource.org/licenses/mit-license.php -## -################################################################################ - -use strict; -use warnings; -use Test::More tests => 8; - -# Ensure environment has no influence. -delete $ENV{'TASKDATA'}; -delete $ENV{'TASKRC'}; - -use File::Basename; -my $ut = basename ($0); -my $rc = $ut . '.rc'; - -# Create the rc file. -if (open my $fh, '>', $rc) -{ - print $fh "data.location=.\n"; - print $fh "confirmation=no\n"; - close $fh; -} - -# Bug 703: /from/t/g fails to make all changes to annotations - -# Setup: Add a few tasks -qx{../src/task rc:$rc add This is a test 2>&1}; -qx{../src/task rc:$rc 1 annotate Annotation one 2>&1}; -qx{../src/task rc:$rc 1 annotate Annotation two 2>&1}; -qx{../src/task rc:$rc 1 annotate Annotation three 2>&1}; - -my $output = qx{../src/task rc:$rc long 2>&1}; -like ($output, qr/This is a test/, "$ut: original description"); -like ($output, qr/Annotation one/, "$ut: original annotation one"); -like ($output, qr/Annotation two/, "$ut: original annotation two"); -like ($output, qr/Annotation three/, "$ut: original annotation three"); - -qx{../src/task rc:$rc 1 modify /i/I/g 2>&1}; -$output = qx{../src/task rc:$rc long 2>&1}; -like ($output, qr/ThIs Is a test/, "$ut: new description"); -like ($output, qr/AnnotatIon one/, "$ut: new annotation one"); -like ($output, qr/AnnotatIon two/, "$ut: new annotation two"); -like ($output, qr/AnnotatIon three/, "$ut: new annotation three"); - -# Cleanup. -unlink qw(pending.data completed.data undo.data backlog.data), $rc; -exit 0; -