mirror of
https://github.com/python/cpython.git
synced 2025-11-03 07:01:21 +00:00
16 lines
331 B
Python
16 lines
331 B
Python
|
|
"""Tests for packaging.extension."""
|
||
|
|
import os
|
||
|
|
|
||
|
|
from packaging.compiler.extension import Extension
|
||
|
|
from packaging.tests import unittest
|
||
|
|
|
||
|
|
class ExtensionTestCase(unittest.TestCase):
|
||
|
|
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_suite():
|
||
|
|
return unittest.makeSuite(ExtensionTestCase)
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
unittest.main(defaultTest="test_suite")
|