aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-09-17 22:08:50 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-09-17 22:08:50 +0200
commit3e400c3df5572524b7ba08b030f45eb3ba6b7734 (patch)
treec7fd7a5d391649c7905ee685cfa7fe7b4498cf1b /t
parent361bb55f01ba28960a8127b0a16c1e7a7a8de61a (diff)
downloadcforum-3e400c3df5572524b7ba08b030f45eb3ba6b7734.tar.gz
Add database helper functions
Diffstat (limited to 't')
-rw-r--r--t/post.t8
-rw-r--r--t/post.tc14
2 files changed, 20 insertions, 2 deletions
diff --git a/t/post.t b/t/post.t
index a74f29a..56d3c37 100644
--- a/t/post.t
+++ b/t/post.t
@@ -1 +1,7 @@
-<h1>Post <% printf("%d", id); %></h1>
+<h1>Post <% printf("%d", id); %>: <%= post->subject %></h1>
+<p>From: <%= user->full %>
+&lt;<a href="?user=<% printf("%d", user->id); %>"><%= user->name %></a>&gt;
+<br>Date: <% PFREE(date(post->created)); %>
+<pre>
+<%= post->text %>
+</pre> \ No newline at end of file
diff --git a/t/post.tc b/t/post.tc
index 7c36950..2f81de0 100644
--- a/t/post.tc
+++ b/t/post.tc
@@ -1,3 +1,15 @@
printf("<h1>Post ");
printf("%d", id);
-printf("</h1>\n");
+printf(": ");
+printf("%s", post->subject );
+printf("</h1>\n<p>From: ");
+printf("%s", user->full );
+printf("\n&lt;<a href=\"?user=");
+printf("%d", user->id);
+printf("\">");
+printf("%s", user->name );
+printf("</a>&gt;\n<br>Date: ");
+PFREE(date(post->created));
+printf("\n<pre>\n");
+printf("%s", post->text );
+printf("\n</pre>");