python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / qemu-vm-volatile-root.nix
blobbc8fd853409dba24be69df5fa84a46530915bf19
1 # Test that the root filesystem is a volatile tmpfs.
3 { lib, ... }:
6   name = "qemu-vm-volatile-root";
8   meta.maintainers = with lib.maintainers; [ nikstur ];
10   nodes.machine = _: {
11     virtualisation.diskImage = null;
12   };
14   testScript = ''
15     machine.succeed("findmnt --kernel --types tmpfs /")
16   '';