rbx_xml 3.0.0

Implementation of Roblox's XML file formats, rbxlx and rbxmx
Documentation
//! Roundtrip testing for model files from the `test-files` submodule

use std::path::PathBuf;

use heck::ToKebabCase;

use super::test_suite;

macro_rules! place_tests {
    ($($test_name: ident,)*) => {
        $(
            #[test]
            fn $test_name() {
                let _ = env_logger::try_init();
                let mut test_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
                assert!(test_path.pop());

                test_path.push("test-files");
                test_path.push("places");
                test_path.push(stringify!($test_name).to_kebab_case());
                test_path.push("xml.rbxlx");

                test_suite(test_path).unwrap()
            }
        )*
    };
}

place_tests! {
    baseplate_727_with_tags,
}