mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
12 lines
204 B
ChaiScript
12 lines
204 B
ChaiScript
|
|
|
|
try {
|
|
use("failed_deep_include.inc")
|
|
assert_true(false);
|
|
} catch (e) {
|
|
puts("Caught exception while trying to use file");
|
|
assert_equal(e.what(), "File Not Found: totally_missing_file.inc");
|
|
}
|
|
|
|
|