mirror of
https://github.com/python/cpython.git
synced 2024-11-25 09:39:56 +01:00
8ad8898420
* Ensure importlib.metadata tests do not leak references in sys.modules. * Move importlib.metadata tests to their own package for easier syncing with importlib_metadata. * Update owners and makefile for new directories. * Add blurb
11 lines
233 B
Python
11 lines
233 B
Python
import unittest
|
|
|
|
|
|
class fake_filesystem_unittest:
|
|
"""
|
|
Stubbed version of the pyfakefs module
|
|
"""
|
|
class TestCase(unittest.TestCase):
|
|
def setUpPyfakefs(self):
|
|
self.skipTest("pyfakefs not available")
|