mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +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")
|