aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/tests/rust_macro.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/testing/tests/rust_macro.rs b/testing/tests/rust_macro.rs
index c6e97ce..a9924db 100644
--- a/testing/tests/rust_macro.rs
+++ b/testing/tests/rust_macro.rs
@@ -4,19 +4,17 @@ extern crate askama;
use askama::Template;
macro_rules! hello {
- ($name:expr) => {
+ () => {
"world"
}
}
#[derive(Template)]
#[template(path = "rust-macros.html")]
-struct RustMacrosTemplate<'a> {
- name: &'a str,
-}
+struct RustMacrosTemplate {}
#[test]
fn main() {
- let template = RustMacrosTemplate { name: "foo" };
+ let template = RustMacrosTemplate {};
assert_eq!("Hello, world!", template.render().unwrap());
}