read a file in the test sandbox and verify its contents
1 with(immutable Sandbox()) { 2 import unit_threaded.should; 3 4 writeFile("lines.txt", ["foo", "toto"]); 5 shouldEqualLines("lines.txt", ["foo", "bar"]).shouldThrow; 6 shouldEqualLines("lines.txt", ["foo", "toto"]); 7 }
See Implementation
read a file in the test sandbox and verify its contents