feat: add test helpers

default args to {}
This commit is contained in:
technofab 2025-06-13 15:44:16 +02:00
parent 001b575f31
commit bed029f4a9
No known key found for this signature in database
3 changed files with 59 additions and 1 deletions

5
lib/testHelpers.nix Normal file
View file

@ -0,0 +1,5 @@
{lib, ...}: {
path = pkgs: "export PATH=${lib.makeBinPath pkgs}";
pathAdd = pkgs: "export PATH=$PATH:${lib.makeBinPath pkgs}";
scriptHelpers = builtins.readFile ./scriptHelpers.sh;
}