diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-12-17 13:13:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-12-17 13:13:21 +0000 |
commit | 0701eb7e7a89556e56368aa738a42e63bc459303 (patch) | |
tree | a5f75bb54af7bfdc8c713e5e0f26ea969b2c4b80 /t/02packdrake.t | |
parent | f65f03e6a0fe20661e1c09ce4412264ce8c15309 (diff) | |
download | rpmtools-0701eb7e7a89556e56368aa738a42e63bc459303.tar rpmtools-0701eb7e7a89556e56368aa738a42e63bc459303.tar.gz rpmtools-0701eb7e7a89556e56368aa738a42e63bc459303.tar.bz2 rpmtools-0701eb7e7a89556e56368aa738a42e63bc459303.tar.xz rpmtools-0701eb7e7a89556e56368aa738a42e63bc459303.zip |
Neatier test labels
Diffstat (limited to 't/02packdrake.t')
-rwxr-xr-x | t/02packdrake.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/02packdrake.t b/t/02packdrake.t index 6a26077..1d0aebf 100755 --- a/t/02packdrake.t +++ b/t/02packdrake.t @@ -58,9 +58,9 @@ ok($pack->extract_archive("test", qw(dir file link)), "Extracting files from arc ok(open($fh, "test/file"), "Opening extract file"); sysread($fh, my $data, 1_000); -ok($data eq $coin, "data succefully restored"); -ok(-d "test/dir", "dir succefully restored"); -ok(readlink("test/link") eq "file", "symlink succefully restored"); +ok($data eq $coin, "data successfully restored"); +ok(-d "test/dir", "dir successfully restored"); +ok(readlink("test/link") eq "file", "symlink successfully restored"); clean_test_files(); |