diff options
Diffstat (limited to 'test/testdata/eval-okay-search-path.nix')
-rw-r--r-- | test/testdata/eval-okay-search-path.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-search-path.nix b/test/testdata/eval-okay-search-path.nix new file mode 100644 index 0000000..6fe33de --- /dev/null +++ b/test/testdata/eval-okay-search-path.nix | |||
@@ -0,0 +1,10 @@ | |||
1 | with import ./lib.nix; | ||
2 | with builtins; | ||
3 | |||
4 | assert isFunction (import <nix/fetchurl.nix>); | ||
5 | |||
6 | assert length __nixPath == 5; | ||
7 | assert length (filter (x: baseNameOf x.path == "dir4") __nixPath) == 1; | ||
8 | |||
9 | import <a.nix> + import <b.nix> + import <c.nix> + import <dir5/c.nix> | ||
10 | + (let __nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import <a.nix>) | ||