mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
16 lines
543 B
Nix
16 lines
543 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "btrfs-subvolumes";
|
|
disko-config = ../example/btrfs-subvolumes.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test ! -e /test");
|
|
machine.succeed("test -e /home/user");
|
|
machine.succeed("btrfs subvolume list / | grep -qs 'path test$'");
|
|
machine.succeed("btrfs subvolume list / | grep -qs 'path nix$'");
|
|
machine.succeed("btrfs subvolume list / | grep -qs 'path home$'");
|
|
'';
|
|
}
|
|
|