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
14
test/merge.t
14
test/merge.t
|
@ -28,7 +28,7 @@
|
|||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More tests => 41;
|
||||
use Test::More tests => 45;
|
||||
use File::Copy;
|
||||
|
||||
use constant false => 0;
|
||||
|
@ -237,6 +237,12 @@ ok (!-r 'local/completed.data', 'Removed local/completed.data');
|
|||
unlink 'local/undo.data';
|
||||
ok (!-r 'local/undo.data', 'Removed local/undo.data');
|
||||
|
||||
unlink 'local/backlog.data';
|
||||
ok (!-r 'local/backlog.data', 'Removed local/backlog.data');
|
||||
|
||||
unlink 'local/synch.key';
|
||||
ok (!-r 'local/synch.key', 'Removed local/synch.key');
|
||||
|
||||
unlink 'local/undo.save';
|
||||
ok (!-r 'local/undo.save', 'Removed local/undo.save');
|
||||
|
||||
|
@ -252,6 +258,12 @@ ok (!-r 'remote/completed.data', 'Removed remote/completed.data');
|
|||
unlink 'remote/undo.data';
|
||||
ok (!-r 'remote/undo.data', 'Removed remote/undo.data');
|
||||
|
||||
unlink 'remote/backlog.data';
|
||||
ok (!-r 'remote/backlog.data', 'Removed remote/backlog.data');
|
||||
|
||||
unlink 'remote/synch.key';
|
||||
ok (!-r 'remote/synch.key', 'Removed remote/synch.key');
|
||||
|
||||
unlink 'remote.rc';
|
||||
ok (!-r 'remote.rc', 'Removed remote.rc');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue