Files
clan-core/lib/select/tests.nix
2025-04-04 14:06:05 +02:00

11 lines
134 B
Nix

{ clanLib, ... }:
let
inherit (clanLib) select;
in
{
test_simple_1 = {
expr = select "a" { a = 1; };
expected = 1;
};
}