コード例 #1
0
ファイル: test_text.py プロジェクト: bubbt/weasyl
def test_excerpt_default_length():
    assert markdown_excerpt(u'a' * 300) == u'a' * 300
    assert markdown_excerpt(u'a' * 301) == u'a' * 299 + u'…'
コード例 #2
0
ファイル: test_text.py プロジェクト: makyo/weasyl
def test_excerpt_default_length():
    assert markdown_excerpt(u'a' * 300) == u'a' * 300
    assert markdown_excerpt(u'a' * 301) == u'a' * 299 + u'…'
コード例 #3
0
ファイル: test_text.py プロジェクト: bubbt/weasyl
def test_excerpt(target, expected):
    assert markdown_excerpt(target, length=30) == expected
コード例 #4
0
ファイル: test_text.py プロジェクト: makyo/weasyl
def test_excerpt(target, expected):
    assert markdown_excerpt(target, length=30) == expected