Unit Tests

- Removed useless setup/teardown tests, improving the signal to noise ratio.
This commit is contained in:
Paul Beckingham
2014-06-01 09:56:14 -04:00
parent 0a1bcbd48d
commit bdad6642c8
2 changed files with 2 additions and 16 deletions

View File

@@ -29,7 +29,7 @@
use strict; use strict;
use warnings; use warnings;
use Test::More tests => 84; use Test::More tests => 82;
# Ensure environment has no influence. # Ensure environment has no influence.
delete $ENV{'TASKDATA'}; delete $ENV{'TASKDATA'};
@@ -49,7 +49,6 @@ if (open my $fh, '>', 'cal.rc')
"confirmation=off\n", "confirmation=off\n",
"bulk=10\n"; "bulk=10\n";
close $fh; close $fh;
ok (-r 'cal.rc', 'Created cal.rc');
} }
my @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); my @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
@@ -263,10 +262,4 @@ like ($output, qr/30;103m25/, 'Holiday åäö is color-coded');
# Cleanup. # Cleanup.
unlink qw(pending.data completed.data undo.data backlog.data details.rc); unlink qw(pending.data completed.data undo.data backlog.data details.rc);
ok (! -r 'pending.data' &&
! -r 'completed.data' &&
! -r 'undo.data' &&
! -r 'backlog.data' &&
! -r 'details.rc', 'Cleanup');
exit 0; exit 0;

View File

@@ -27,7 +27,7 @@
use strict; use strict;
use warnings; use warnings;
use Test::More tests => 18; use Test::More tests => 16;
# Ensure environment has no influence. # Ensure environment has no influence.
delete $ENV{'TASKDATA'}; delete $ENV{'TASKDATA'};
@@ -43,7 +43,6 @@ if (open my $fh, '>', 'caseless.rc')
"report.ls.filter=status:pending\n"; "report.ls.filter=status:pending\n";
close $fh; close $fh;
ok (-r 'caseless.rc', 'Created caseless.rc');
} }
# Attempt case-sensitive and case-insensitive substitutions and filters. # Attempt case-sensitive and case-insensitive substitutions and filters.
@@ -128,11 +127,5 @@ like ($output, qr/four five six/, 'one two three\nfour five six -> ls descriptio
# Cleanup. # Cleanup.
unlink qw(pending.data completed.data undo.data backlog.data caseless.rc); unlink qw(pending.data completed.data undo.data backlog.data caseless.rc);
ok (! -r 'pending.data' &&
! -r 'completed.data' &&
! -r 'undo.data' &&
! -r 'backlog.data' &&
! -r 'caseless.rc', 'Cleanup');
exit 0; exit 0;