disko/tests/btrfs-subvolumes.nix

12 lines
307 B
Nix
Raw Normal View History

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