vscode-extensions.sas.sas-lsp: 1.12.0 -> 1.13.0 (#367941)
[NixPkgs.git] / nixos / tests / web-apps / tt-rss.nix
blob7bd4413d72868154fdf1193a5c8706f3f52fd043
1 import ../make-test-python.nix (
2   { ... }:
3   {
4     name = "tt-rss-nixos";
6     nodes.machine =
7       { pkgs, ... }:
8       {
9         services.tt-rss = {
10           enable = true;
11           virtualHost = "localhost";
12           selfUrlPath = "http://localhost/";
13           singleUserMode = true;
14         };
15       };
17     testScript = ''
18       machine.wait_for_unit("tt-rss.service")
19       machine.succeed("curl -sSfL http://localhost/ | grep 'Tiny Tiny RSS'")
20     '';
21   }