예제 #1
0
    def test_init(self):
        filepath = os.path.join(Util.content_dir_path(), "file1.txt")

        doc = Document(filepath)

        self.assertTrue(len(doc.text()) > 0)
        self.assertTrue(doc.text().find("people in charge") != -1)
예제 #2
0
    def test_tokens(self):
        doc = Document("id","Matrix of TelePresence components continue")
        tokens = doc.all_tokens()

        self.assertEqual(len(tokens), 3)
예제 #3
0
    def test_init_with_txt(self):
        doc = Document("id", "txt")

        self.assertEqual(doc.text(), "txt")
        self.assertEqual(doc.id(), "id")