2022-11-10 08:46:55 +00:00
|
|
|
# this is a regression test for https://github.com/nix-community/disko/issues/52
|
2023-07-28 12:04:18 +00:00
|
|
|
{ pkgs ? import <nixpkgs> { }
|
|
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
2022-11-10 08:46:55 +00:00
|
|
|
}:
|
2023-07-28 12:04:18 +00:00
|
|
|
diskoLib.testLib.makeDiskoTest {
|
2023-07-14 09:37:30 +00:00
|
|
|
inherit pkgs;
|
2023-02-21 16:19:39 +00:00
|
|
|
name = "multi-device-no-deps";
|
2022-11-10 08:46:55 +00:00
|
|
|
disko-config = ../example/multi-device-no-deps.nix;
|
|
|
|
testBoot = false;
|
|
|
|
extraTestScript = ''
|
|
|
|
machine.succeed("mountpoint /mnt/a");
|
|
|
|
machine.succeed("mountpoint /mnt/b");
|
|
|
|
'';
|
|
|
|
}
|