diff options
-rw-r--r-- | testing/templates/macro-import-str-cmp-macro.html | 13 | ||||
-rw-r--r-- | testing/templates/macro-import-str-cmp.html | 15 | ||||
-rw-r--r-- | testing/tests/macro.rs | 10 |
3 files changed, 38 insertions, 0 deletions
diff --git a/testing/templates/macro-import-str-cmp-macro.html b/testing/templates/macro-import-str-cmp-macro.html new file mode 100644 index 0000000..a951f93 --- /dev/null +++ b/testing/templates/macro-import-str-cmp-macro.html @@ -0,0 +1,13 @@ +{% macro strcmp0(s, other) -%} + {%- if s == "foo" -%} + foo + {%- else if s == other -%} + other + {%- else -%} + neither + {%- endif -%} +{% endmacro %} + +{% macro strcmp(s) %} + {%- call strcmp0(s, "bar") -%} +{% endmacro %} diff --git a/testing/templates/macro-import-str-cmp.html b/testing/templates/macro-import-str-cmp.html new file mode 100644 index 0000000..648a0cf --- /dev/null +++ b/testing/templates/macro-import-str-cmp.html @@ -0,0 +1,15 @@ +{%- import "macro-import-str-cmp-macro.html" as macros -%} + +A + +{%- call macros::strcmp("foo") -%} + +B + +{%- call macros::strcmp("bar") -%} + +C + +{%- call macros::strcmp("cat") -%} + +D diff --git a/testing/tests/macro.rs b/testing/tests/macro.rs index 7f7e4dc..e449dd5 100644 --- a/testing/tests/macro.rs +++ b/testing/tests/macro.rs @@ -63,3 +63,13 @@ fn test_nested_macro_with_args() { let t = NestedMacroArgsTemplate {}; assert_eq!(t.render().unwrap(), "first second"); } + +#[derive(Template)] +#[template(path = "macro-import-str-cmp.html")] +struct StrCmpTemplate; + +#[test] +fn str_cmp() { + let t = StrCmpTemplate; + assert_eq!(t.render().unwrap(), "AfooBotherCneitherD"); +} |