koto_test_utils 0.14.0

Testing utilities for the Koto programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Testing utilities for Koto crates

#![warn(missing_docs)]

mod check_script_output;
mod doc_examples;
mod output_capture;
mod script_instructions;
mod type_helpers;

pub use check_script_output::{check_script_output, check_script_output_with_vm};
pub use doc_examples::run_koto_examples_in_markdown;
pub use output_capture::OutputCapture;
pub use script_instructions::script_instructions;
pub use type_helpers::*;