apivolve_generator_api 0.1.1

Api for creating generators for Apivolve, an API evolution tool that helps keep your APIs backwards compatible yet clean.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provide tests to see if a generator handles some pre-defined cases.
//!
//! Since Apivolve can make almost no assumptions about the what generators do,
//! this only provides the data and checks for [Result] and [panic!].
//! It is up to the generator's author to test that the output makes sense.

mod generate;
mod suite;
mod testdata;

pub use self::suite::testsuite_basic;
pub use self::suite::testsuite_full;
pub use self::testdata::*;