def test_get_document_content_paf(): actual = get_document_content_paf( CURDIR + '/data/docs_okformed/001BBB8BFFE6841FA498FCE88C43B63A') assert_true(len(actual.strip()) > 400)
def test_get_document_content_paf(): actual = get_document_content_paf(CURDIR + '/data/docs_okformed/001BBB8BFFE6841FA498FCE88C43B63A') assert_true(len(actual.strip()) > 400)
def test_get_document_content_paf_empty(): actual = get_document_content_paf(CURDIR + '/data/empty_doc') expected = '\n\n' assert_equal(actual, expected)