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