mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
12 lines
270 B
Nix
12 lines
270 B
Nix
|
{ pkgs ? import <nixpkgs> { }
|
||
|
, diskoLib ? pkgs.callPackage ../lib { }
|
||
|
}:
|
||
|
diskoLib.testLib.makeDiskoTest {
|
||
|
inherit pkgs;
|
||
|
name = "long-device-name";
|
||
|
disko-config = ../example/long-device-name.nix;
|
||
|
extraTestScript = ''
|
||
|
machine.succeed("mountpoint /");
|
||
|
'';
|
||
|
}
|