malvin 0.2.5

Non-interactive research and coding agent
1
2
3
4
5
6
7
8
use super::check_abort;

#[test]
fn smoke_check_abort_ok_when_no_result_file() {
    let tmp = tempfile::tempdir().expect("tempdir");
    let result = tmp.path().join("result.md");
    assert!(check_abort(&result).expect("missing is ok").is_none());
}