nixir/tests/integration/ir_builtins_test.nix
NotAShelf 85a865af47
tests: initial integration tests
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I09ed2eea568edfaecdb800197bc36c416a6a6964
2026-04-24 23:13:05 +03:00

13 lines
289 B
Nix

# Test our custom IR builtins
let
# Test nixIR_info
info = builtins.nixIR_info;
# Test nixIR_compile
compiled = builtins.nixIR_compile "let x = 10; in x + 5";
# Test that normal builtins still work
list = builtins.map (x: x * 2) [1 2 3];
in {
inherit info compiled list;
}