about summary refs log blame commit diff stats
path: root/tests/default.nix
blob: d9b354ac4078bad6de6f3fbcbfdcf9bbd0767eff (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13











                                                                                      
{
  specialArgs,
  nixLib,
  pkgs,
}: let
  tests = nixLib.mkByName {
    baseDirectory = ./by-name;
    fileName = "test.nix";
    finalizeFunction = name: value:
      import value (nixLib.warnMerge specialArgs {inherit pkgs;} "the test args set");
  };
in
  tests