diff options
Diffstat (limited to 'src/creole-test.c')
-rw-r--r-- | src/creole-test.c | 5 |
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 <, >, & and "</p>" |