mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
14 lines
368 B
Nix
14 lines
368 B
Nix
# this is a regression test for https://github.com/nix-community/disko/issues/52
|
|
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "negative-size";
|
|
disko-config = ../example/negative-size.nix;
|
|
testBoot = false;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /mnt");
|
|
'';
|
|
}
|