def test_si_sample_html_partial(self): """Using the si sample, make sure we can get the article alone.""" sample = load_sample('si-game.sample.html') doc = Document(sample) doc.parse(["summary"], html_partial=True) res = doc.summary() self.assertEqual('<div><h1>Tigers-R', res[0:17])
def test_si_sample(self): """Using the si sample, load article with only opening body element""" sample = load_sample('si-game.sample.html') doc = Document(sample) doc.parse(["summary"]) res = doc.summary() self.assertEqual('<html><body><h1>Tigers-Roya', res[0:27])