lib/test: move from tests/test-derivation

This commit is contained in:
Matt Sturgeon 2024-08-05 17:40:18 +01:00
parent cbd1003d9d
commit 19d5f4b134
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
3 changed files with 2 additions and 2 deletions

View file

@ -7,6 +7,6 @@
}@args: }@args:
{ {
# Add all exported modules here # Add all exported modules here
check = import ../tests/test-derivation.nix { inherit lib pkgs; }; check = import ./tests.nix { inherit lib pkgs; };
helpers = import ./helpers.nix (args // { inherit _nixvimTests; }); helpers = import ./helpers.nix (args // { inherit _nixvimTests; });
} }

View file

@ -6,7 +6,7 @@
}: }:
let let
fetchTests = import ./fetch-tests.nix; fetchTests = import ./fetch-tests.nix;
test-derivation = import ./test-derivation.nix { inherit pkgs lib; }; test-derivation = import ../lib/tests.nix { inherit pkgs lib; };
inherit (test-derivation) mkTestDerivationFromNixvimModule; inherit (test-derivation) mkTestDerivationFromNixvimModule;
# List of files containing configurations # List of files containing configurations