Add a test for gte.

This commit is contained in:
Tom Alexander
2020-05-16 15:45:57 -04:00
parent 7d4cb14530
commit 02abee1c53
4 changed files with 116 additions and 2 deletions

View File

@@ -334,6 +334,13 @@ impl<'a> DustRenderer<'a> {
}
}
}
DustTag::DTHelperGreaterThan(parameterized_block) => {
let param_map: HashMap<&str, &RValue<'a>> = parameterized_block
.params
.iter()
.map(|pair: &KVPair<'a>| (pair.key, &pair.value))
.collect();
}
_ => (), // TODO: Implement the rest
}
Ok("".to_owned())