disko/tests/btrfs-subvolumes.nix

12 lines
314 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
2022-08-25 21:46:17 +02:00
}:
2022-08-25 23:12:49 +02:00
makeDiskoTest {
2022-08-25 21:46:17 +02:00
disko-config = import ../example/btrfs-subvolumes.nix;
2022-08-25 23:12:49 +02:00
extraTestScript = ''
machine.succeed("test -e /test");
machine.succeed("btrfs subvolume list / | grep -qs 'path test$'");
2022-08-25 21:46:17 +02:00
'';
}