disko/tests/simple-efi.nix

12 lines
272 B
Nix
Raw Normal View History

2022-10-23 10:29:13 +00:00
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
2022-10-23 10:29:13 +00:00
}:
makeDiskoTest {
inherit pkgs;
2023-02-21 16:19:39 +00:00
name = "simple-efi";
2022-10-29 11:19:29 +00:00
disko-config = ../example/simple-efi.nix;
2022-10-23 10:29:13 +00:00
extraTestScript = ''
machine.succeed("mountpoint /");
'';
}