mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 09:43:06 +00:00
c0d8709b45
Signed-off-by: Omar Sandoval <osandov@osandov.com>
13 lines
235 B
Python
13 lines
235 B
Python
# Copyright (c) Meta Platforms, Inc. and 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)
|