Esempio n. 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
Esempio n. 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
Esempio n. 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
Esempio n. 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