mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
18 lines
311 B
Nix
18 lines
311 B
Nix
|
# Test that the root filesystem is a volatile tmpfs.
|
||
|
|
||
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
name = "qemu-vm-volatile-root";
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ nikstur ];
|
||
|
|
||
|
nodes.machine = _: {
|
||
|
virtualisation.diskImage = null;
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machine.succeed("findmnt --kernel --types tmpfs /")
|
||
|
'';
|
||
|
}
|