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
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