mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 17:53:07 +00:00
a4b9d68a8c
Apparently the latter is deprecated and the former is preferred. Signed-off-by: Omar Sandoval <osandov@osandov.com>
13 lines
233 B
Python
13 lines
233 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import pydoc
|
|
import unittest
|
|
|
|
import drgn
|
|
|
|
|
|
class TestDocs(unittest.TestCase):
|
|
def test_render(self):
|
|
pydoc.render_doc(drgn)
|