import tests.helper as th def passes(out, err): return all( [th.writes(err, '/tmp/barbaz'), th.writes(err, '/tmp/silly-file'), th.count_writes(err, 2), th.count_readdir(err, 0), ]) def passes_windows(out, err): print('out:\n' + out) print('err:\n' + err) return all( [th.writes(err, r'\tmp\barbaz'), th.writes(err, '/tmp/silly-file'), th.count_writes(err, 2), th.count_readdir(err, 0), ]) needs_symlinks = False