mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
26 lines
428 B
Nix
26 lines
428 B
Nix
|
{ pkgs, lib, self }:
|
||
|
|
||
|
lib.runTests {
|
||
|
testsUtilsGetBin = {
|
||
|
expr = self.utils.getBin [
|
||
|
../modules
|
||
|
../../modules
|
||
|
];
|
||
|
expected = [
|
||
|
(lib.getBin ../modules)
|
||
|
(lib.getBin ../../modules)
|
||
|
];
|
||
|
};
|
||
|
|
||
|
testsUtilsGetLibexec = {
|
||
|
expr = self.utils.getLibexec [
|
||
|
../modules
|
||
|
../../modules
|
||
|
];
|
||
|
expected = [
|
||
|
"${../modules}/libexec"
|
||
|
"${../../modules}/libexec"
|
||
|
];
|
||
|
};
|
||
|
}
|