You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
16 lines
362 B
import unittest
|
|
from test.support import import_helper
|
|
|
|
_testcapi = import_helper.import_module('_testcapi')
|
|
|
|
|
|
class TestCAPI(unittest.TestCase):
|
|
def test_immortal_builtins(self):
|
|
_testcapi.test_immortal_builtins()
|
|
|
|
def test_immortal_small_ints(self):
|
|
_testcapi.test_immortal_small_ints()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|
|
|