disko/tests/hybrid.nix

12 lines
264 B
Nix
Raw Normal View History

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