summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index f0b734e..09270e1 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -134,6 +134,16 @@ class TemporaryFileTests(unittest.TestCase):
else:
self.check_tempfile(name)
+ def fdopen_helper(self, *args):
+ fd = os.open(support.TESTFN, os.O_RDONLY)
+ fp2 = os.fdopen(fd, *args)
+ fp2.close()
+
+ def test_fdopen(self):
+ self.fdopen_helper()
+ self.fdopen_helper('r')
+ self.fdopen_helper('r', 100)
+
# Test attributes on return values from os.*stat* family.
class StatAttributeTests(unittest.TestCase):
def setUp(self):