Add test test_absolute_win32_path
This commit is contained in:
parent
dd2425675b
commit
1a37035d71
|
@ -104,10 +104,7 @@ def _prepareconfig(args=None, plugins=None):
|
||||||
elif not isinstance(args, (tuple, list)):
|
elif not isinstance(args, (tuple, list)):
|
||||||
if not isinstance(args, str):
|
if not isinstance(args, str):
|
||||||
raise ValueError("not a string or argument list: %r" % (args,))
|
raise ValueError("not a string or argument list: %r" % (args,))
|
||||||
if sys.platform == "win32":
|
args = shlex.split(args, posix=sys.platform == "win32")
|
||||||
args = shlex.split(args, posix=False)
|
|
||||||
else:
|
|
||||||
args = shlex.split(args)
|
|
||||||
config = get_config()
|
config = get_config()
|
||||||
pluginmanager = config.pluginmanager
|
pluginmanager = config.pluginmanager
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -79,7 +79,7 @@ class TestParseIni:
|
||||||
""")
|
""")
|
||||||
result = testdir.inline_run("--confcutdir=.")
|
result = testdir.inline_run("--confcutdir=.")
|
||||||
assert result.ret == 0
|
assert result.ret == 0
|
||||||
|
|
||||||
class TestConfigCmdlineParsing:
|
class TestConfigCmdlineParsing:
|
||||||
def test_parsing_again_fails(self, testdir):
|
def test_parsing_again_fails(self, testdir):
|
||||||
config = testdir.parseconfig()
|
config = testdir.parseconfig()
|
||||||
|
@ -101,6 +101,16 @@ class TestConfigCmdlineParsing:
|
||||||
config = testdir.parseconfig("-c", "custom.cfg")
|
config = testdir.parseconfig("-c", "custom.cfg")
|
||||||
assert config.getini("custom") == "1"
|
assert config.getini("custom") == "1"
|
||||||
|
|
||||||
|
def test_absolute_win32_path(self, testdir):
|
||||||
|
temp_cfg_file = testdir.makefile(".cfg", custom="""
|
||||||
|
[pytest]
|
||||||
|
addopts = --version
|
||||||
|
""")
|
||||||
|
from os.path import normpath
|
||||||
|
temp_cfg_file = normpath(str(temp_cfg_file))
|
||||||
|
ret = pytest.main("-c " + temp_cfg_file)
|
||||||
|
assert ret == _pytest.main.EXIT_OK
|
||||||
|
|
||||||
class TestConfigAPI:
|
class TestConfigAPI:
|
||||||
def test_config_trace(self, testdir):
|
def test_config_trace(self, testdir):
|
||||||
config = testdir.parseconfig()
|
config = testdir.parseconfig()
|
||||||
|
|
Loading…
Reference in New Issue