예제 #1
0
 def test_render_rst_with_child(self):
     node = Yields(indent=5)
     child = Node(indent=10, lines=["Description"], parent=node)
     node.add_child(child)
     rst = node.render_rst()
     self.assertEqual(rst, ['     :returns: Description',
                            ''])
예제 #2
0
 def test_render_rst_with_children(self):
     node = Yields(indent=5)
     child_a = Node(indent=10, lines=["ChildA"], parent=node)
     node.add_child(child_a)
     child_b = Node(indent=10, lines=["ChildB"], parent=node)
     node.add_child(child_b)
     rst = node.render_rst()
     self.assertEqual(rst,
                      ['     :returns: ChildA', '          ChildB', ''])
예제 #3
0
 def test_render_rst_with_children(self):
     node = Yields(indent=5)
     child_a = Node(indent=10, lines=["ChildA"], parent=node)
     node.add_child(child_a)
     child_b = Node(indent=10, lines=["ChildB"], parent=node)
     node.add_child(child_b)
     rst = node.render_rst()
     self.assertEqual(rst, ['     :returns: ChildA',
                            '          ChildB',
                            ''])
예제 #4
0
 def test_render_rst_with_child(self):
     node = Yields(indent=5)
     child = Node(indent=10, lines=["Description"], parent=node)
     node.add_child(child)
     rst = node.render_rst()
     self.assertEqual(rst, ['     :returns: Description', ''])
예제 #5
0
 def test_render_rst_indent(self):
     node = Yields(indent=5)
     rst = node.render_rst()
     self.assertEqual(rst, ['     :returns: ', ''])
예제 #6
0
 def test_render_rst_indent(self):
     node = Yields(indent=5)
     rst = node.render_rst()
     self.assertEqual(rst, ['     :returns: ',
                            ''])