diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-04 13:19:31 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-04 13:21:55 +0200 |
commit | 549d0ec3c6799eb31517b093faa7c85752ba7d8c (patch) | |
tree | be947ea5fbba0c9d6718a4a85cc5d12d1ff002d2 /testing/tests/include.rs | |
parent | 51eee57b84adf7fe72b7aa9b23e3ef974baad5a4 (diff) | |
download | askama-549d0ec3c6799eb31517b093faa7c85752ba7d8c.tar.gz askama-549d0ec3c6799eb31517b093faa7c85752ba7d8c.tar.bz2 askama-549d0ec3c6799eb31517b093faa7c85752ba7d8c.zip |
Add test for include blocks (see #25)
Diffstat (limited to 'testing/tests/include.rs')
-rw-r--r-- | testing/tests/include.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/tests/include.rs b/testing/tests/include.rs new file mode 100644 index 0000000..7ddccd2 --- /dev/null +++ b/testing/tests/include.rs @@ -0,0 +1,19 @@ +#[macro_use] +extern crate askama; + +use askama::Template; + +#[derive(Template)] +#[template(path = "include.html")] +struct IncludeTemplate<'a> { + strs: &'a [&'a str], +} + +#[test] +fn test_include() { + let strs = vec!["foo", "bar"]; + let s = IncludeTemplate { + strs: &strs, + }; + assert_eq!(s.render(), "INCLUDED: fooINCLUDED: bar") +} |