Compare commits

..

1 Commits

Author SHA1 Message Date
T. R. Bernstein
040862a0c0 Adapt project for Astzweig
Some checks failed
CI / macOS (push) Has been cancelled
CI / linux (swift:6.0) (push) Has been cancelled
CI / linux (swift:6.1) (push) Has been cancelled
CI / linux (swift:6.2) (push) Has been cancelled
CI / windows (6.1) (push) Has been cancelled
2025-09-29 14:28:48 +02:00
2 changed files with 6 additions and 6 deletions

View File

@@ -104,17 +104,17 @@ final class PartialTests: XCTestCase {
XCTAssertEqual(
library.render(object, withTemplate: "base1"),
"""
1, 2, 3, 4, 5,
>> 1, 2, 3, 4, 5,
1, 2, 3, 4, 5,
>> 1, 2, 3, 4, 5,
[ 1, 2, 3, 4, 5,
[ 1, 2, 3, 4, 5,
]
"""
)
XCTAssertEqual(
library.render(object, withTemplate: "base2"),
"""
1, 2, 3, 4, 5, >> 1, 2, 3, 4, 5,
1, 2, 3, 4, 5, >> 1, 2, 3, 4, 5,
[ 1, 2, 3, 4, 5, ]
"""
)

View File

@@ -193,8 +193,8 @@ final class TemplateRendererTests: XCTestCase {
template.render(object),
"""
* Chris & Friends
*
*
*
*
* <b>GitHub</b>
"""
)