mirror of https://github.com/python/cpython
#16935: update test_crypt now that unittest discover understands SkipTest.
This commit is contained in:
parent
eae2b38948
commit
fbd26867ef
|
@ -1,11 +1,7 @@
|
||||||
from test import support
|
from test import support
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
def setUpModule():
|
crypt = support.import_module('crypt')
|
||||||
# this import will raise unittest.SkipTest if _crypt doesn't exist,
|
|
||||||
# so it has to be done in setUpModule for test discovery to work
|
|
||||||
global crypt
|
|
||||||
crypt = support.import_module('crypt')
|
|
||||||
|
|
||||||
class CryptTestCase(unittest.TestCase):
|
class CryptTestCase(unittest.TestCase):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue