コード例 #1
0
def test_get_document_content_paf():
    actual = get_document_content_paf(
        CURDIR + '/data/docs_okformed/001BBB8BFFE6841FA498FCE88C43B63A')
    assert_true(len(actual.strip()) > 400)
コード例 #2
0
def test_get_document_content_paf():
    actual = get_document_content_paf(CURDIR + '/data/docs_okformed/001BBB8BFFE6841FA498FCE88C43B63A')
    assert_true(len(actual.strip()) > 400)
コード例 #3
0
def test_get_document_content_paf_empty():
    actual = get_document_content_paf(CURDIR + '/data/empty_doc')
    expected = '\n\n'
    assert_equal(actual, expected)
コード例 #4
0
def test_get_document_content_paf_empty():
    actual = get_document_content_paf(CURDIR + '/data/empty_doc')
    expected = '\n\n'
    assert_equal(actual, expected)