summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/new.txt
blob: aad0d80f6a3eaffb2aa0cd29d2bfaea5e70ae4bf (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Test the new command.

hugo new site -h
stdout 'Create a new site in the provided directory'
hugo new site mysite -f
stdout 'Congratulations! Your new Hugo site is created in'
cd mysite
checkfile hugo.toml

hugo new theme -h
stdout 'Create a new site in the provided directory'
hugo new theme mytheme
stdout 'Creating theme'
cd themes
cd mytheme
checkfile theme.toml
checkfile hugo.toml
exists layouts/_default/list.html
exists layouts/_default/single.html

cd $WORK/mysite

hugo new -h
stdout 'Create a new content file.'
hugo new posts/my-first-post.md
checkfile content/posts/my-first-post.md

cd ..
cd myexistingsite
hugo new post/foo.md -t mytheme
grep 'Dummy content' content/post/foo.md

-- myexistingsite/hugo.toml --
theme = "mytheme"
-- myexistingsite/content/p1.md --
---
title: "P1"
---
-- myexistingsite/themes/mytheme/hugo.toml --
-- myexistingsite/themes/mytheme/archetypes/post.md --
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

Dummy content.