meta: CTest integration; expand test coverage

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I3e6bf966985f6212e99d146cb18e4e2f6a6a6964
This commit is contained in:
raf 2026-04-24 14:40:10 +03:00
commit 554f7f21f1
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
6 changed files with 31 additions and 8 deletions

BIN
tests/fixtures/lambda_pattern.nixr vendored Normal file

Binary file not shown.

BIN
tests/fixtures/string_interp.nixr vendored Normal file

Binary file not shown.

View file

@ -0,0 +1,2 @@
# Test string interpolation
let x = "world"; in "Hello ${x}!"

View file

@ -0,0 +1,5 @@
# Test lambda patterns
({
name,
version ? "1.0",
}: "${name}-${version}") {name = "test";}