Ejemplo n.º 1
0
def test_coerce_custom_value_falsy():
    custom_value = coerce_custom_value("False")
    assert custom_value is False
Ejemplo n.º 2
0
def test_coerce_custom_value_string():
    custom_value = coerce_custom_value("Foo")
    assert custom_value == "Foo"
Ejemplo n.º 3
0
def test_coerce_custom_value_float():
    custom_value = coerce_custom_value("42")
    assert custom_value == 42.0
    assert type(custom_value) == float
Ejemplo n.º 4
0
def test_coerce_custom_value_truthy():
    custom_value = coerce_custom_value("True")
    assert custom_value is True
Ejemplo n.º 5
0
def test_coerce_custom_value_string():
    custom_value = coerce_custom_value("Foo")
    assert custom_value == "Foo"
Ejemplo n.º 6
0
def test_coerce_custom_value_falsy():
    custom_value = coerce_custom_value("False")
    assert custom_value is False
Ejemplo n.º 7
0
def test_coerce_custom_value_truthy():
    custom_value = coerce_custom_value("True")
    assert custom_value is True
Ejemplo n.º 8
0
def test_coerce_custom_value_float():
    custom_value = coerce_custom_value("42")
    assert custom_value == 42.0
    assert type(custom_value) == float
Ejemplo n.º 9
0
def test_coerce_custom_value_string():
    custom_value = coerce_custom_value('Foo')
    assert custom_value == 'Foo'