rune-testing 0.6.15

Test helpers for Rune, an embeddable dynamic programming language for Rust.
Documentation
use rune_testing::{run, Result};

fn main() -> Result<()> {
    let object: (i64, i64) = run(
        &["calc"],
        ((1, 2),),
        r#"
        fn calc(input) {
            (input.0 + 1, input.1 + 2)
        }
        "#,
    )?;

    println!("{:?}", object);
    Ok(())
}