repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vscode-extensions.sas.sas-lsp: 1.12.0 -> 1.13.0 (#367941)
[NixPkgs.git]
/
nixos
/
tests
/
web-apps
/
tt-rss.nix
blob
7bd4413d72868154fdf1193a5c8706f3f52fd043
1
import ../make-test-python.nix (
2
{ ... }:
3
{
4
name = "tt-rss-nixos";
5
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
};
16
17
testScript = ''
18
machine.wait_for_unit("tt-rss.service")
19
machine.succeed("curl -sSfL http://localhost/ | grep 'Tiny Tiny RSS'")
20
'';
21
}
22
)