Testing a passing test
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
4f96e752a8
commit
08eec536a0
2 changed files with 2 additions and 2 deletions
|
@ -11,4 +11,4 @@ pipeline:
|
|||
commands:
|
||||
- apk add sqlite sqlite-dev libpq libpq-dev curl xz
|
||||
- curl https://ziglang.org/download/0.10.0/zig-linux-x86_64-0.10.0.tar.xz | xz -d | tar -x
|
||||
- ./zig-linux-x86_64-0.10.0/zig build unit
|
||||
- ./zig-linux-x86_64-0.10.0/zig build unit:template
|
||||
|
|
|
@ -1349,7 +1349,7 @@ test "template" {
|
|||
|
||||
try testCase("", .{}, "");
|
||||
try testCase("abcd", .{}, "abcd");
|
||||
try testCase("{.val}", .{ .val = 3 }, "3");
|
||||
try testCase("{.v}", .{ .v = @as(usize, 3) }, "3");
|
||||
try testCase("{#if .val}1{/if}", .{ .val = true }, "1");
|
||||
try testCase("{#for .vals |$v|=} {$v} {=/for}", .{ .vals = [_]u8{ 1, 2, 3 } }, "123");
|
||||
try testCase("{#for .vals |$val|}{$val}{/for}", .{ .vals = [_]u8{ 1, 2, 3 } }, "123");
|
||||
|
|
Loading…
Reference in a new issue