nixir/tests/integration/import_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

7 lines
152 B
Nix

# Test that import builtin still works
let
imported = import ./imported_module.nix;
in {
value = imported.foo + 100;
nested = imported.bar.baz;
}