Remove a couple commented lines.
[perl-fuse.git] / test / truncate.t
1 #!/usr/bin/perl
2 use test::helper qw($_real $_point);
3 use Test::More;
4 plan tests => 5;
5 chdir($_point);
6 open($file, '>', 'womble');
7 print $file "hippity\n";
8 close($file);
9 ok(-f "womble","exists");
10 is(-s "womble",8,"right size");
11 ok(truncate("womble",4),"truncate");
12 ok(-f "womble","file exists");
13 is(-s "womble",4,"right size");
14 unlink("womble");