disko/tests/hybrid.nix

12 lines
264 B
Nix
Raw Normal View History

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