mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-24 18:03:07 +00:00
10 lines
137 B
Python
10 lines
137 B
Python
|
import pydoc
|
||
|
import unittest
|
||
|
|
||
|
import drgn
|
||
|
|
||
|
|
||
|
class TestDocs(unittest.TestCase):
|
||
|
def test_render(self):
|
||
|
pydoc.render_doc(drgn)
|