From 000aff4a18c90a5074afd1af5587ff94e915e7d1 Mon Sep 17 00:00:00 2001 From: vallentin Date: Mon, 11 Jan 2021 19:48:37 +0100 Subject: Added constants test --- testing/tests/simple.rs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'testing/tests') diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 0c6b17e..e7fca2c 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -72,6 +72,36 @@ fn test_variables_no_escape() { ); } +#[derive(Template)] +#[template( + source = "{{ foo }} {{ foo_bar }} {{ FOO }} {{ FOO_BAR }} {{ self::FOO }} {{ self::FOO_BAR }} {{ Self::BAR }} {{ Self::BAR_BAZ }}", + ext = "txt" +)] +struct ConstTemplate { + foo: &'static str, + foo_bar: &'static str, +} + +impl ConstTemplate { + const BAR: &'static str = "BAR"; + const BAR_BAZ: &'static str = "BAR BAZ"; +} + +#[test] +fn test_constants() { + let t = ConstTemplate { + foo: "foo", + foo_bar: "foo bar", + }; + assert_eq!( + t.render().unwrap(), + "foo foo bar FOO FOO BAR FOO FOO BAR BAR BAR BAZ" + ); +} + +const FOO: &str = "FOO"; +const FOO_BAR: &str = "FOO BAR"; + #[derive(Template)] #[template(path = "if.html")] struct IfTemplate { -- cgit