Пример #1
0
def test_config_type_float():
    assert config_type("1.75") == 1.75
Пример #2
0
def test_config_type_int():
    assert config_type("1") == 1
Пример #3
0
def test_config_type_bool():
    assert config_type("True")
Пример #4
0
def test_config_type_float():
    assert config_type('1.75') == 1.75
Пример #5
0
def test_config_type_int():
    assert config_type('1') == 1
Пример #6
0
def test_config_type_bool():
    assert config_type('True')