inspired by #2191 but for the `run_top_level_test_with_args`s and `run_top_level_test_no_args instead of the `load_module_test`s
14 lines
244 B
Rust
14 lines
244 B
Rust
use crate::helper::load_module_test;
|
|
use serial_test::serial;
|
|
|
|
|
|
// issue #831
|
|
#[serial]
|
|
#[test]
|
|
fn call_0() {
|
|
load_module_test(
|
|
"tests-pl/issue831-call0.pl",
|
|
" error(existence_error(procedure,call/0),call/0).\n",
|
|
);
|
|
}
|