[go: up one dir, main page]

toml-test 0.3.1

Verify Rust TOML parsers
Documentation
1
2
3
4
5
6
#[test]
fn can_load() {
    for valid in toml_test_data::valid() {
        toml_test::decoded::Decoded::from_slice(valid.expected).unwrap();
    }
}