diff options
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r-- | testing/tests/simple.rs | 23 |
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]", + ); +} |