mirror of
https://github.com/nix-community/disko
synced 2024-11-13 23:57:12 +00:00
12 lines
336 B
Nix
12 lines
336 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
name = "btrfs-subvolumes";
|
|
disko-config = ../example/btrfs-subvolumes.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -e /test");
|
|
machine.succeed("btrfs subvolume list / | grep -qs 'path test$'");
|
|
'';
|
|
}
|
|
|