diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-16 12:51:11 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-16 12:51:11 +0200 |
commit | d7ac0825e0759cde171670175a5e129ad1f2af10 (patch) | |
tree | abc8746d431fa6193a0347273ac7a52aecd022ff /testing | |
parent | 05597b61daabfa1ab4c675c2943ceeefcb82db36 (diff) | |
download | askama-d7ac0825e0759cde171670175a5e129ad1f2af10.tar.gz askama-d7ac0825e0759cde171670175a5e129ad1f2af10.tar.bz2 askama-d7ac0825e0759cde171670175a5e129ad1f2af10.zip |
Add test for variable declaration
Diffstat (limited to 'testing')
-rw-r--r-- | testing/templates/let-decl.html | 7 | ||||
-rw-r--r-- | testing/tests/vars.rs | 14 |
2 files changed, 21 insertions, 0 deletions
diff --git a/testing/templates/let-decl.html b/testing/templates/let-decl.html new file mode 100644 index 0000000..d348903 --- /dev/null +++ b/testing/templates/let-decl.html @@ -0,0 +1,7 @@ +{% let val -%} +{% if cond -%} + {% let val = "foo" -%} +{% else -%} + {% let val = s -%} +{% endif -%} +{{ val }} diff --git a/testing/tests/vars.rs b/testing/tests/vars.rs index 53e3397..ab40665 100644 --- a/testing/tests/vars.rs +++ b/testing/tests/vars.rs @@ -14,3 +14,17 @@ fn test_let() { let t = LetTemplate { s: "foo" }; assert_eq!(t.render().unwrap(), "foo"); } + + +#[derive(Template)] +#[template(path = "let-decl.html")] +struct LetDeclTemplate<'a> { + cond: bool, + s: &'a str, +} + +#[test] +fn test_let_decl() { + let t = LetDeclTemplate { cond: false, s: "bar" }; + assert_eq!(t.render().unwrap(), "bar"); +} |