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', ''])
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', ''])
def test_render_rst_indent(self): node = Yields(indent=5) rst = node.render_rst() self.assertEqual(rst, [' :returns: ', ''])