mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Unit Tests
- All unit tests now clean up the new backlog.data and synch.key files.
This commit is contained in:
parent
b0c8cff6a2
commit
49cabc1bfd
150 changed files with 1063 additions and 150 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More tests => 11;
|
||||
use Test::More tests => 13;
|
||||
|
||||
# Create the rc file.
|
||||
if (open my $fh, '>', 'projects.rc')
|
||||
|
@ -65,6 +65,12 @@ ok (!-r 'completed.data', 'Removed completed.data');
|
|||
unlink 'undo.data';
|
||||
ok (!-r 'undo.data', 'Removed undo.data');
|
||||
|
||||
unlink 'backlog.data';
|
||||
ok (!-r 'backlog.data', 'Removed backlog.data');
|
||||
|
||||
unlink 'synch.key';
|
||||
ok (!-r 'synch.key', 'Removed synch.key');
|
||||
|
||||
unlink 'projects.rc';
|
||||
ok (!-r 'projects.rc', 'Removed projects.rc');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue