mirror of
https://github.com/nix-community/disko.git
synced 2026-01-16 03:08:30 +01:00
12 lines
360 B
Nix
12 lines
360 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../src/disko_lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "legacy-table-with-whitespace";
|
|
disko-config = ../../example/legacy-table-with-whitespace.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("mountpoint /name_with_spaces");
|
|
'';
|
|
}
|