use koto_runtime::{prelude::*, Result}; use koto_test_utils::run_koto_examples_in_markdown; #[test] fn toml_docs() -> Result<()> { let mut prelude_entries = ValueMap::default(); prelude_entries.insert("toml".into(), koto_toml::make_module().into()); let markdown = include_str!(concat!( env!("CARGO_MANIFEST_DIR"), "/../../docs/libs/toml.md" )); run_koto_examples_in_markdown(markdown, prelude_entries) }