with input objects

This commit is contained in:
2023-01-29 22:17:36 +01:00
parent 2a1f7c3f26
commit dc53fc1d47
5 changed files with 344 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
pub mod enumeration;
pub mod input;
pub mod scalar;
mod utility;
@@ -76,9 +77,13 @@ mod tests {
assert_eq!(
res.to_string().unwrap(),
"pub struct SomeName {} { }
impl SomeName {} { }"
.to_string()
"pub struct SomeName {} {
}
impl SomeName {} {
}"
.to_string()
);
}
}