aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/simple.rs
diff options
context:
space:
mode:
authorLibravatar PizzasBear <43722034+PizzasBear@users.noreply.github.com>2023-11-22 17:09:33 +0200
committerLibravatar GitHub <noreply@github.com>2023-11-22 16:09:33 +0100
commit696561003d9caaf5d1fd537d6a0f4f88fccca8ce (patch)
tree7e62fd238049cbf6a6e615b7e19ce6079a5b4cee /testing/tests/simple.rs
parent48c6cd327d3c1df4218898be509250efcc56597c (diff)
downloadaskama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.tar.gz
askama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.tar.bz2
askama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.zip
Add better support for rust-like number literals (#908)
Signed-off-by: max <gmx.sht@gmail.com>
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r--testing/tests/simple.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs
index 627a8a3..f0f0a26 100644
--- a/testing/tests/simple.rs
+++ b/testing/tests/simple.rs
@@ -461,3 +461,26 @@ fn test_define_string_var() {
let template = DefineStringVar;
assert_eq!(template.render().unwrap(), "");
}
+
+#[derive(askama::Template)]
+#[template(source = "{% let x = 4.5 %}{{ x }}", ext = "html")]
+struct SimpleFloat;
+
+#[test]
+fn test_simple_float() {
+ let template = SimpleFloat;
+ assert_eq!(template.render().unwrap(), "4.5");
+}
+
+#[derive(askama::Template)]
+#[template(path = "num-literals.html")]
+struct NumLiterals;
+
+#[test]
+fn test_num_literals() {
+ let template = NumLiterals;
+ assert_eq!(
+ template.render().unwrap(),
+ "[90, -90, 90, 2, 56, 240, 10.5, 10.5, 100000000000, 105000000000]",
+ );
+}