protospec-build 0.3.0

One binary format language to rule them all, One binary format language to find them, One binary format language to bring them all and in the darkness bind them.
Documentation
use crate::*;

#[test]
fn test_import() {
    parse(
        r#"
    import test from "t";
    "#,
    )
    .unwrap();
}

#[test]
fn test_import_many() {
    parse(
        r#"
    import test, west from "t";
    "#,
    )
    .unwrap();
}

#[test]
fn test_import_many_trailing() {
    parse(
        r#"
    import test, west, from "t";
    "#,
    )
    .unwrap();
}