
    #[test]
    fn {name}() {{
        let input_schema : Result<serde_yaml::Value,_> = serde_yaml::from_str(
            include_str!("{path}/input-schema.yml"));

        if input_schema.is_err() {{
            return;
        }}

        let error = Generator::with(input_schema.unwrap());
        assert!(error.is_err(), "expected {path} to not be parsed correctly");
    }}
