tests: add lvm-sizes-sort test

This commit is contained in:
lassulus 2023-05-15 16:16:40 +02:00
parent e1d5b132d1
commit 0e942c56d7
3 changed files with 80 additions and 0 deletions

10
tests/lvm-sizes-sort.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
name = "lvm-sizes-sort";
disko-config = ../example/lvm-sizes-sort.nix;
extraTestScript = ''
machine.succeed("mountpoint /home");
'';
}