diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple-efi.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/simple-efi.nix b/tests/simple-efi.nix new file mode 100644 index 0000000..2d3b92d --- /dev/null +++ b/tests/simple-efi.nix @@ -0,0 +1,9 @@ +{ pkgs ? (import <nixpkgs> { }) +, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest +}: +makeDiskoTest { + disko-config = import ../example/simple-efi.nix; + extraTestScript = '' + machine.succeed("mountpoint /"); + ''; +} |