mirror of
https://github.com/nix-community/disko.git
synced 2024-11-12 18:15:46 +03:00
12 lines
276 B
Nix
12 lines
276 B
Nix
|
{ 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 /");
|
||
|
'';
|
||
|
}
|