aboutsummaryrefslogtreecommitdiff
path: root/t/00simple.t
blob: d3444de6415f0f014d4043495e8f965824d674c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- perl -*-
use lib qw(t lib);
use strict;
use TestBackup;
use File::Backup;
    
plan test => 4;

makefile('a');

my $name = backup_simple('a');
ok($name, 'a~');
fileok('a', $name);

$name = backup_simple('a');
ok($name, 'a~');
fileok('a', $name);
    
    

Return to:

Send suggestions and report system problems to the System administrator.