summary refs log tree commit diff
path: root/nixos/tests/simple.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/simple.nix')
-rw-r--r--nixos/tests/simple.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/tests/simple.nix b/nixos/tests/simple.nix
new file mode 100644
index 00000000000..eee13a10133
--- /dev/null
+++ b/nixos/tests/simple.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+
+{
+  machine = { config, pkgs, ... }: { };
+
+  testScript =
+    ''
+      startAll;
+      $machine->shutdown;
+    '';
+}