alef 0.25.17

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Per-category test file generation for Rust e2e tests.

mod collection;
mod file_rendering;
mod helpers;
mod test_function;

#[cfg(test)]
mod tests;

pub use collection::collect_test_filenames;
pub use file_rendering::render_test_file;
pub(super) use helpers::is_skipped;
pub use test_function::render_test_function;