# this is a regression test for https://github.com/nix-community/disko/issues/52 { pkgs ? (import { }) , makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest }: makeDiskoTest { inherit pkgs; name = "negative-size"; disko-config = ../example/negative-size.nix; testBoot = false; extraTestScript = '' machine.succeed("mountpoint /mnt"); ''; }