Lines Matching full:plain
21 is(-f 'TEST', 1, "-f: plain file correctly identified");
22 isnt(-f 'op', 1, "-f: directory is not a plain file");
23 isnt(-d 'TEST', 1, "-d: plain file is not a directory");
76 is(defined( -f -d 'TEST' ), 1, "-f and -d stackable: plain file found");
77 isnt(-f -d _, 1, "-f and -d stackable: no plain file found");
80 isnt(defined( -f -e 'zoo' ), 1, "-f and -e: not a plain file and does not exist");
81 is(-f -e 'TEST', 1, "-f and -e: plain file and exists");
82 is(-e -f 'TEST', 1, "-e and -f: exists and is plain file");
85 isnt( -f -d 'op', 1, "-f and -d: directory found but is not a plain file");
90 is(-f -s 'TEST', 1, "-f and -s: plain file with non-zero size");
93 is(-f $ro_empty_file, 1, "-f: plain file found");
95 is(-f -s $ro_empty_file, 0, "-f and -s: plain file with 0 bytes");
96 is(-s -f $ro_empty_file, 0, "-s and -f: file with 0 bytes is plain file");