Assert that a file does not exist in the sandbox
with(immutable Sandbox()) { import unit_threaded.should; shouldNotExist("baz.txt"); writeFile("baz.txt"); shouldNotExist("baz.txt").shouldThrow; }
See Implementation
Assert that a file does not exist in the sandbox