annatto 0.50.1

Converts linguistic data formats based on the graphANNIS data model as intermediate representation and can apply consistency tests.
Documentation
use std::path::Path;

use insta::assert_snapshot;

use super::*;
use crate::test_util;

#[test]
fn serialize() {
    let module = ImportSaltXml::default();
    let serialization = toml::to_string(&module);
    assert!(
        serialization.is_ok(),
        "Serialization failed: {:?}",
        serialization.err()
    );
    assert_snapshot!(serialization.unwrap());
}

#[test]
fn read_salt_sample_corpus() {
    let importer = ImportSaltXml::default();
    let actual = test_util::import_as_graphml_string(
        importer,
        Path::new("tests/data/import/salt/SaltSampleCorpus"),
        None,
    )
    .unwrap();
    assert_snapshot!(actual);
}

#[test]
fn read_salt_with_timeline() {
    let importer = ImportSaltXml::default();
    let actual = test_util::import_as_graphml_string(
        importer,
        Path::new("tests/data/import/salt/dialog.demo"),
        None,
    )
    .unwrap();
    assert_snapshot!(actual);
}