summaryrefslogtreecommitdiffstats
path: root/nixos/tests/ergo.nix
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2020-05-24 20:39:23 +0200
committerMarek Mahut <marek.mahut@gmail.com>2020-05-26 21:47:31 +0200
commitcd5f6265443ae882dab85e58aec99a4283542116 (patch)
tree697851b66da62d708d52c51f1652ae6d95a361e4 /nixos/tests/ergo.nix
parentfdc48e5c7eecc804ca47e275f9e2f9cfd490e285 (diff)
tests/ergo: init
Diffstat (limited to 'nixos/tests/ergo.nix')
-rw-r--r--nixos/tests/ergo.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/nixos/tests/ergo.nix b/nixos/tests/ergo.nix
new file mode 100644
index 000000000000..8cdbbf62a956
--- /dev/null
+++ b/nixos/tests/ergo.nix
@@ -0,0 +1,18 @@
+import ./make-test-python.nix ({ pkgs, ... }: {
+ name = "ergo";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ mmahut ];
+ };
+
+ nodes = {
+ machine = { ... }: {
+ services.ergo.enable = true;
+ services.ergo.api.keyHash = "324dcf027dd4a30a932c441f365a25e86b173defa4b8e58948253471b81b72cf";
+ };
+ };
+
+ testScript = ''
+ start_all()
+ machine.wait_for_unit("ergo.service")
+ '';
+})