blob: 030dc1f7cdbf893b0a25a0ab915526739368a22c [file] [log] [blame]
Mark Glines88111612002-04-22 02:24:28 +00001#!/usr/bin/perl
2use test::helper qw($_real $_point);
3use Test::More;
4plan tests => 1;
5chdir($_real);
6system("echo frog >file");
7chdir($_point);
8ok(open(FILE,"file"),"open");
9close(FILE);
10unlink("file");