diff --git a/harbour/tests/working/filexist.prg b/harbour/tests/working/filexist.prg new file mode 100644 index 0000000000..2c0c9414a2 --- /dev/null +++ b/harbour/tests/working/filexist.prg @@ -0,0 +1,16 @@ +// test of hb_file function +function main + +if hb_file("filexist.prg") == .t. + qout("file exist test works") +else + qout("file exist test fails") +endif + +if hb_file("filxxist.prg") == .f. + qout("file exist test works") +else + qout("file exist test fails") +endif + +return nil