diff options
author | René Kijewski <kijewski@library.vetmed.fu-berlin.de> | 2021-07-18 11:42:47 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2021-11-11 10:05:34 +0100 |
commit | cfe83bcb73b9e0cfd8a2d3151e4cab38327eabea (patch) | |
tree | a4e5b40e033b0d3cfc0d1b48298cb9f9e185d3dd /testing/tests/ui | |
parent | f06022c70f2411252ad7ebb8214e0826beaefcf8 (diff) | |
download | askama-cfe83bcb73b9e0cfd8a2d3151e4cab38327eabea.tar.gz askama-cfe83bcb73b9e0cfd8a2d3151e4cab38327eabea.tar.bz2 askama-cfe83bcb73b9e0cfd8a2d3151e4cab38327eabea.zip |
Implement {{loop.cycle(…)}} similar to Jinja
Diffstat (limited to 'testing/tests/ui')
-rw-r--r-- | testing/tests/ui/loop_cycle_wrong_argument_count.rs | 13 | ||||
-rw-r--r-- | testing/tests/ui/loop_cycle_wrong_argument_count.stderr | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/testing/tests/ui/loop_cycle_wrong_argument_count.rs b/testing/tests/ui/loop_cycle_wrong_argument_count.rs new file mode 100644 index 0000000..e87f4f4 --- /dev/null +++ b/testing/tests/ui/loop_cycle_wrong_argument_count.rs @@ -0,0 +1,13 @@ +use askama::Template; + +#[derive(Template)] +#[template( + source = r#"{% for v in values %}{{ loop.cycle("r", "g", "b") }}{{ v }},{% endfor %}"#, + ext = "txt" +)] +struct ForCycle<'a> { + values: &'a [u8], +} + +fn main() { +} diff --git a/testing/tests/ui/loop_cycle_wrong_argument_count.stderr b/testing/tests/ui/loop_cycle_wrong_argument_count.stderr new file mode 100644 index 0000000..acf3bb1 --- /dev/null +++ b/testing/tests/ui/loop_cycle_wrong_argument_count.stderr @@ -0,0 +1,7 @@ +error: loop.cycle(…) expects exactly one argument + --> $DIR/loop_cycle_wrong_argument_count.rs:3:10 + | +3 | #[derive(Template)] + | ^^^^^^^^ + | + = note: this error originates in the derive macro `Template` (in Nightly builds, run with -Z macro-backtrace for more info) |