diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-09-07 20:42:54 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-09-07 20:42:54 +0200 |
commit | e559ed42102d425f23701e061cdea509a0f325b4 (patch) | |
tree | 6a4515df896b388bac3e2e1b9ea4031b1aec0d73 /testing/tests/simple.rs | |
parent | 07e9b307c88d33900f1843239582edc0ac546c4a (diff) | |
download | askama-e559ed42102d425f23701e061cdea509a0f325b4.tar.gz askama-e559ed42102d425f23701e061cdea509a0f325b4.tar.bz2 askama-e559ed42102d425f23701e061cdea509a0f325b4.zip |
Move JSON test into filters test module
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r-- | testing/tests/simple.rs | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 93faf50..eac7c4b 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -1,10 +1,8 @@ #[macro_use] extern crate askama; -#[macro_use] -extern crate serde_json; use askama::Template; -use serde_json::Value; + #[derive(Template)] #[template(path = "simple.html")] @@ -146,31 +144,6 @@ fn test_generics() { #[derive(Template)] -#[template(path = "json.html")] -struct JsonTemplate<'a> { - foo: &'a str, - bar: &'a Value, -} - -#[test] -fn test_json() { - let val = json!({"arr": [ "one", 2, true, null ]}); - let t = JsonTemplate { foo: "a", bar: &val }; - // Note: the json filter lacks a way to specify initial indentation - assert_eq!(t.render().unwrap(), r#"{ - "foo": "a", - "bar": { - "arr": [ - "one", - 2, - true, - null - ] -} -}"#); -} - -#[derive(Template)] #[template(path = "composition.html")] struct CompositionTemplate { foo: IfTemplate, |