コード例 #1
0
    def test_get_from_str(self):
        d = Doc.get_from_str(self.doc1)
        self.assertEqual("Computes a cumulative percent sum.", d.one_line)
        self.assertEqual(
            """A cumulative percent sum is computed by sequentially stepping through the
column values and keeping track of the current percentage of the total sum
accounted for at the current value.""", d.extended)
コード例 #2
0
ファイル: pyrst.py プロジェクト: rainiraj/atk
 def doc_to_rst(doc):
     """Create a Doc object if not already a Doc"""
     return doc if isinstance(doc, Doc) else Doc.get_from_str(doc)
コード例 #3
0
 def doc_to_rst(doc):
     """Create a Doc object if not already a Doc"""
     return doc if isinstance(doc, Doc) else Doc.get_from_str(doc)
コード例 #4
0
ファイル: test_genrst.py プロジェクト: rainiraj/atk
    def test_get_from_str(self):
        d = Doc.get_from_str(self.doc1)
        self.assertEqual("Computes a cumulative percent sum.", d.one_line)
        self.assertEqual("""A cumulative percent sum is computed by sequentially stepping through the
column values and keeping track of the current percentage of the total sum
accounted for at the current value.""", d.extended)