mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
25 lines
220 B
Rust
25 lines
220 B
Rust
mod common;
|
|
|
|
run_test!(
|
|
single_call,
|
|
r#"
|
|
fn test() {
|
|
print "correct";
|
|
}
|
|
|
|
test();
|
|
"#
|
|
);
|
|
|
|
run_test!(
|
|
single_call_expect_return,
|
|
r#"
|
|
fn test() {
|
|
print "correct1";
|
|
}
|
|
|
|
test();
|
|
|
|
print "correct2";
|
|
"#
|
|
);
|