mirror of
https://github.com/python/cpython.git
synced 2025-10-23 09:53:47 +00:00
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")
|