mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 21:14:33 +03:00
13 lines
386 B
Nix
13 lines
386 B
Nix
# this is a regression test for https://github.com/nix-community/disko/issues/52
|
|
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = ../example/multi-device-no-deps.nix;
|
|
testBoot = false;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /mnt/a");
|
|
machine.succeed("mountpoint /mnt/b");
|
|
'';
|
|
}
|