##// END OF EJS Templates
Image deduplication (BB-53). When an image with the same hash is uploaded, it...
Image deduplication (BB-53). When an image with the same hash is uploaded, it won't be saved. Instead, post will be linked to the same PostImage object

File last commit:

r926:024ba48c default
r944:6ed17cb6 default
Show More
test_parser.py
27 lines | 916 B | text/x-python | PythonLexer
from django.test import TestCase
from boards.models import Post
class ParserTest(TestCase):
def test_preparse_quote(self):
raw_text = '>quote\nQuote in >line\nLine\n>Quote'
preparsed_text = Post.objects._preparse_text(raw_text)
self.assertEqual(
'[quote]quote[/quote]\nQuote in >line\nLine\n[quote]Quote[/quote]',
preparsed_text, 'Quote not preparsed.')
def test_preparse_comment(self):
raw_text = '//comment'
preparsed_text = Post.objects._preparse_text(raw_text)
self.assertEqual('[comment]comment[/comment]', preparsed_text,
'Comment not preparsed.')
def test_preparse_reflink(self):
raw_text = '>>12\nText'
preparsed_text = Post.objects._preparse_text(raw_text)
self.assertEqual('[post]12[/post]\nText',
preparsed_text, 'Reflink not preparsed.')