mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
11 lines
233 B
Python
Vendored
11 lines
233 B
Python
Vendored
import unittest
|
|
|
|
|
|
class fake_filesystem_unittest:
|
|
"""
|
|
Stubbed version of the pyfakefs module
|
|
"""
|
|
class TestCase(unittest.TestCase):
|
|
def setUpPyfakefs(self):
|
|
self.skipTest("pyfakefs not available")
|