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