summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/server_render_to_memory.txt
blob: 368efe41d1159b0c23f915e6316dac5dbeca5aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Test the hugo server command.

# We run these tests in parallel so let Hugo decide which port to use.
# Deliberately using the alias 'serve' here.
hugo serve &

waitServer

httpget $HUGOTEST_BASEURL_0 'Title: Hugo Server Test' $HUGOTEST_BASEURL_0

! exists public/index.html
! exists public/mystatic.txt

stopServer
! stderr .

-- hugo.toml --
title = "Hugo Server Test"
baseURL = "https://example.org/"
disableKinds = ["taxonomy", "term", "sitemap"]
-- static/mystatic.txt --
This is a static file.
-- layouts/index.html --
Title: {{ .Title }}|BaseURL: {{ site.BaseURL }}|