mirror of
https://github.com/nix-community/disko.git
synced 2024-11-09 00:04:18 +03:00
17 lines
529 B
Nix
17 lines
529 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.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$'");
|
|
'';
|
|
}
|
|
|