. is no more unvalable

This commit is contained in:
Emmanuel Garette 2021-05-18 18:52:42 +02:00
parent a5b6352188
commit b0462a1e80
2 changed files with 14 additions and 0 deletions

View File

@ -31,6 +31,18 @@ async def test_option_valid_name():
with pytest.raises(ValueError):
SymLinkOption(1, i)
i = SymLinkOption("test1", i)
#
#
#@pytest.mark.asyncio
#async def test_option_unvalid_name():
# with pytest.raises(ValueError):
# IntOption('test.', '')
# with pytest.raises(ValueError):
# IntOption('test.val', '')
# with pytest.raises(ValueError):
# IntOption('.test', '')
# with pytest.raises(ValueError):
# OptionDescription('.test', '', [])
@pytest.mark.asyncio

View File

@ -40,6 +40,8 @@ submulti = 2
def valid_name(name):
if not isinstance(name, str):
return False
# if '.' in name:
# return False
return True