コード例 #1
0
def test_find_title():
    title, content = format_post_from_string("""
Title Goes Here
===============

this is the rest of the body
""")
    assert title == 'Title Goes Here'
    return
コード例 #2
0
def test_find_title():
    title, content = format_post_from_string("""
Title Goes Here
===============

this is the rest of the body
""")
    assert title == 'Title Goes Here'
    return
コード例 #3
0
def test_find_body():
    title, content = format_post_from_string("""
Title Goes Here
===============

this is the rest of the body
""")
    assert 'this is the rest of the body' in content
    return
コード例 #4
0
def test_find_body():
    title, content = format_post_from_string("""
Title Goes Here
===============

this is the rest of the body
""")
    assert 'this is the rest of the body' in content
    return