mirror of
https://github.com/nix-community/disko.git
synced 2024-11-09 00:04:18 +03:00
14 lines
329 B
Nix
14 lines
329 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "zfs-over-legacy";
|
|
disko-config = ../example/zfs-over-legacy.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -e /zfs_fs");
|
|
machine.succeed("mountpoint /zfs_fs");
|
|
'';
|
|
}
|
|
|