mirror of https://github.com/python/cpython
Readded Lib/distutils/tests/test_sysconfig.py
Somehow it went missing during the merge
This commit is contained in:
parent
255f53bdb5
commit
e7f9f46514
|
@ -0,0 +1,37 @@
|
|||
"""Tests for distutils.dist."""
|
||||
|
||||
from distutils import sysconfig
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
from test.test_support import TESTFN
|
||||
|
||||
class SysconfigTestCase(unittest.TestCase):
|
||||
|
||||
def test_get_config_h_filename(self):
|
||||
config_h = sysconfig.get_config_h_filename()
|
||||
self.assert_(os.path.isfile(config_h), config_h)
|
||||
|
||||
def test_get_python_lib(self):
|
||||
lib_dir = sysconfig.get_python_lib()
|
||||
# XXX doesn't work on Inux when Python was never installed before
|
||||
#self.assert_(os.path.isdir(lib_dir), lib_dir)
|
||||
# test for pythonxx.lib?
|
||||
|
||||
def test_get_python_inc(self):
|
||||
inc_dir = sysconfig.get_python_inc()
|
||||
self.assert_(os.path.isdir(inc_dir), inc_dir)
|
||||
python_h = os.path.join(inc_dir, "Python.h")
|
||||
self.assert_(os.path.isfile(python_h), python_h)
|
||||
|
||||
def test_get_config_vars(self):
|
||||
cvars = sysconfig.get_config_vars()
|
||||
self.assert_(isinstance(cvars, dict))
|
||||
self.assert_(cvars)
|
||||
|
||||
|
||||
def test_suite():
|
||||
suite = unittest.TestSuite()
|
||||
suite.addTest(unittest.makeSuite(SysconfigTestCase))
|
||||
return suite
|
Loading…
Reference in New Issue