disko/tests/with-lib.nix

13 lines
283 B
Nix
Raw Normal View History

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