lib/tests: move packages-from-directory/* into a subdir

in preparation for adding more tests for `lib.packagesFromDirectoryRecursive`
This commit is contained in:
nicoo 2024-11-28 21:01:51 +00:00 committed by Paul Meyer
parent 325b3755f5
commit fdd2c6f80f
12 changed files with 2 additions and 2 deletions

View File

@ -2617,7 +2617,7 @@ runTests {
testPackagesFromDirectoryRecursive = {
expr = packagesFromDirectoryRecursive {
callPackage = path: overrides: import path overrides;
directory = ./packages-from-directory;
directory = ./packages-from-directory/plain;
};
expected = {
a = "a";
@ -2642,7 +2642,7 @@ runTests {
testPackagesFromDirectoryRecursiveTopLevelPackageNix = {
expr = packagesFromDirectoryRecursive {
callPackage = path: overrides: import path overrides;
directory = ./packages-from-directory/c;
directory = ./packages-from-directory/plain/c;
};
expected = "c";
};