diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 20:49:08 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 20:49:08 +0200 |
commit | 85ed0253684f34e0f66bb1678d52e605b483c7e1 (patch) | |
tree | 833bfff5670dfe391609259fc95f6d538d03e5e4 /testing/tests/simple.rs | |
parent | 82d85bbc20ec4c525d65c4e12e157a934ac2719e (diff) | |
download | askama-85ed0253684f34e0f66bb1678d52e605b483c7e1.tar.gz askama-85ed0253684f34e0f66bb1678d52e605b483c7e1.tar.bz2 askama-85ed0253684f34e0f66bb1678d52e605b483c7e1.zip |
Add test that starts with a single brace (see #24)
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r-- | testing/tests/simple.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index a04b3fa..6d8afa3 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -121,3 +121,17 @@ fn test_generics() { let t = GenericsTemplate { t: "a", u: 42 }; assert_eq!(t.render(), "a42"); } + + +#[derive(Template)] +#[template(path = "json.html")] +struct JsonTemplate<'a> { + foo: &'a str, + bar: &'a str, +} + +#[test] +fn test_json() { + let t = JsonTemplate { foo: "a", bar: "b" }; + assert_eq!(t.render(), "{\"foo\": \"a\", \"bar\": \"b\"}"); +} |