summaryrefslogtreecommitdiff
path: root/riki.md
diff options
context:
space:
mode:
Diffstat (limited to 'riki.md')
-rw-r--r--riki.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/riki.md b/riki.md
index 85abe81..14be721 100644
--- a/riki.md
+++ b/riki.md
@@ -381,7 +381,6 @@ then file output/dir/foo.html contains "href="/absolute""
then file output/dir/foo.html contains "href="dir/sibling""
then file output/dir/foo.html contains "href="dir/foo/child""
then file output/dir/foo.html contains "href="dir/foo/child/grandchild""
-then file output/dir/foo.html contains "href="/missing"
~~~
~~~{#foo .file .markdown}
@@ -389,6 +388,20 @@ then file output/dir/foo.html contains "href="/missing"
[[sibling]]
[[child]]
[[child/grandchild]]
+~~~
+
+## Wiki links to pages that don't exist
+
+_Requirement: Linking to a page that doesn't exist is an error._
+
+~~~scenario
+given an installed riki
+given file site/dir/foo.mdwn from badlink
+when I try to run riki build --plain-body site output
+then command fails
+~~~
+
+~~~{#badlink .file .markdown}
[[missing]]
~~~