Example #1
0
def test_config_type_float():
    assert config_type("1.75") == 1.75
Example #2
0
def test_config_type_int():
    assert config_type("1") == 1
Example #3
0
def test_config_type_bool():
    assert config_type("True")
Example #4
0
def test_config_type_float():
    assert config_type('1.75') == 1.75
Example #5
0
def test_config_type_int():
    assert config_type('1') == 1
Example #6
0
def test_config_type_bool():
    assert config_type('True')