tests: move fixtures to dedicated dir

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I9d6ce6a264780f215b1b57d947b5264c6a6a6964
This commit is contained in:
raf 2026-02-23 02:24:48 +03:00
commit ae505188fc
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
75 changed files with 478 additions and 438 deletions

12
tests/fixtures/precedence.nix vendored Normal file
View file

@ -0,0 +1,12 @@
# Test operator precedence
let
a = 1 + 2 * 3; # Should be 1 + (2 * 3) = 7
b = 10 - 5 - 2; # Should be (10 - 5) - 2 = 3
c = true && false || true; # Should be (true && false) || true = true
d = 1 < 2 && 3 > 2; # Should be (1 < 2) && (3 > 2) = true
in {
a = a;
b = b;
c = c;
d = d;
}