jlabel 0.1.8

HTS-style full-context label structure and parser/serializer from/to string
1
2
3
4
5
6
7
8
9
10
mod fixtures;
use fixtures::fixtures;

#[test]
fn test_serialize() {
    for (expected, label) in fixtures() {
        let actual = label.to_string();
        assert_eq!(actual, expected);
    }
}