summaryrefslogtreecommitdiff
path: root/src/creole-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/creole-test.c')
-rw-r--r--src/creole-test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/creole-test.c b/src/creole-test.c
index 8844a88..76d62af 100644
--- a/src/creole-test.c
+++ b/src/creole-test.c
@@ -11,6 +11,11 @@ struct {
const char *name, *input, *output;
} tests[] = {
{
+ .name = "Empty input produces no output",
+ .input = "",
+ .output = ""
+ },
+ {
.name = "Basic paragraph markup",
.input = "Basic paragraph test with <, >, & and \"",
.output = "<p>Basic paragraph test with &lt;, &gt;, &amp; and &quot;</p>"