aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests')
-rw-r--r--testing/tests/filters.rs4
-rw-r--r--testing/tests/iron.rs1
2 files changed, 5 insertions, 0 deletions
diff --git a/testing/tests/filters.rs b/testing/tests/filters.rs
index 8c654c1..d6e9782 100644
--- a/testing/tests/filters.rs
+++ b/testing/tests/filters.rs
@@ -1,9 +1,11 @@
#[macro_use]
extern crate askama;
+#[cfg(feature = "serde-json")]
#[macro_use]
extern crate serde_json;
use askama::Template;
+#[cfg(feature = "serde-json")]
use serde_json::Value;
#[derive(Template)]
@@ -87,6 +89,7 @@ fn test_vec_join() {
assert_eq!(t.render().unwrap(), "foo, bar, bazz");
}
+#[cfg(feature = "serde-json")]
#[derive(Template)]
#[template(path = "json.html")]
struct JsonTemplate<'a> {
@@ -94,6 +97,7 @@ struct JsonTemplate<'a> {
bar: &'a Value,
}
+#[cfg(feature = "serde-json")]
#[test]
fn test_json() {
let val = json!({"arr": [ "one", 2, true, null ]});
diff --git a/testing/tests/iron.rs b/testing/tests/iron.rs
index 95c366c..10dcee3 100644
--- a/testing/tests/iron.rs
+++ b/testing/tests/iron.rs
@@ -1,3 +1,4 @@
+#![cfg(feature = "iron")]
#[macro_use]
extern crate askama;
extern crate iron;