disko/tests/legacy-table.nix

12 lines
276 B
Nix
Raw Normal View History

2023-07-18 00:14:32 +03:00
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
}:
makeDiskoTest {
inherit pkgs;
name = "legacy-table";
disko-config = ../example/legacy-table.nix;
extraTestScript = ''
machine.succeed("mountpoint /");
'';
}