summaryrefslogtreecommitdiffstats
path: root/tests/boot-raid1.nix
blob: bea9adbbe1d8a42d6b50c1e96fb25fce8c94ec8a (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
  disko-config = ../example/boot-raid1.nix;
  extraTestScript = ''
    machine.succeed("test -b /dev/md/boot");
    machine.succeed("mountpoint /boot");
  '';
}