disko/tests/hybrid.nix

10 lines
224 B
Nix
Raw Normal View History

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