mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-11 23:50:05 +01:00
10 lines
317 B
Nix
10 lines
317 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = import ../example/zfs.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -b /dev/zvol/zroot/zfs_testvolume");
|
|
machine.succeed("grep -qs '/mnt/ext4onzfs' /proc/mounts");
|
|
'';
|
|
}
|