chore(lib/select): init simple test

This commit is contained in:
Johannes Kirschbauer
2025-04-02 15:00:27 +02:00
parent 788d9b9670
commit 6d4bbc3e92
2 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ callInventoryAdapter }:
{ callInventoryAdapter, ... }:
let
# Authored module
# A minimal module looks like this

View File

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