From 7387f7f5e9751c8681ddbc35bfddf609fac4e11f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 5 Jan 2021 23:09:04 +0000 Subject: [PATCH] Extra test --- tests.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests.py b/tests.py index d29671e2a..e76a3b74d 100644 --- a/tests.py +++ b/tests.py @@ -3041,6 +3041,23 @@ def testLinksWithinPost() -> None: '' + \ 'freedombone.net

' + content = "

Some text

Other text

More text

" + \ + "
Errno::EOHNOES (No such file or rodent @ " + \
+        "ik_right - /tmp/blah.png)

" + \ + "(" + \ + "wuh)

Oh yeah like for sure

" + \ + "

Ground sloth tin opener

" + \ + "

#taggedthing

" + postJsonObject = \ + createPublicPost(baseDir, nickname, domain, port, httpPrefix, + content, + False, False, False, True, + None, None, False, None) + assert postJsonObject['object']['content'] == content + def runAllTests(): print('Running tests...')