summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_configparser.py
diff options
context:
space:
mode:
authorDavid Ellis <ducksual@gmail.com>2017-03-03 17:14:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-03-03 17:14:27 (GMT)
commit85b8d01c916b482dac937b93ede1e53b1db0361c (patch)
treebfa366f638fdd8276bfca76ffaf252ee1e3fa5f7 /Lib/test/test_configparser.py
parent677ab995cede784f5dafa64d54c92e98c8b81dd7 (diff)
downloadcpython-85b8d01c916b482dac937b93ede1e53b1db0361c.zip
cpython-85b8d01c916b482dac937b93ede1e53b1db0361c.tar.gz
cpython-85b8d01c916b482dac937b93ede1e53b1db0361c.tar.bz2
bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)
Diffstat (limited to 'Lib/test/test_configparser.py')
-rw-r--r--Lib/test/test_configparser.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_configparser.py b/Lib/test/test_configparser.py
index 696f642..72c3f19 100644
--- a/Lib/test/test_configparser.py
+++ b/Lib/test/test_configparser.py
@@ -2,6 +2,7 @@ import collections
import configparser
import io
import os
+import pathlib
import textwrap
import unittest
import warnings
@@ -720,6 +721,16 @@ boolean {0[0]} NO
parsed_files = cf.read(file1)
self.assertEqual(parsed_files, [file1])
self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
+ # check when we pass only a Path object:
+ cf = self.newconfig()
+ parsed_files = cf.read(pathlib.Path(file1))
+ self.assertEqual(parsed_files, [file1])
+ self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
+ # check when we passed both a filename and a Path object:
+ cf = self.newconfig()
+ parsed_files = cf.read([pathlib.Path(file1), file1])
+ self.assertEqual(parsed_files, [file1, file1])
+ self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
# check when we pass only missing files:
cf = self.newconfig()
parsed_files = cf.read(["nonexistent-file"])