Make ioctl implementation BSD-friendly.
[perl-fuse.git] / test / open.t
1 #!/usr/bin/perl
2 use test::helper qw($_real $_point);
3 use Test::More;
4 plan tests => 1;
5 chdir($_real);
6 open($file, '>', 'file');
7 print $file "frog\n";
8 close($file);
9 chdir($_point);
10 ok(open(FILE,"file"),"open");
11 close(FILE);
12 unlink("file");