Exemplo n.º 1
0
def test_unknown_type():
    with pytest.raises(exc.ConvertationError):
        converters.string(type)
Exemplo n.º 2
0
def test_unknown_encoding():
    with pytest.raises(exc.ConvertationError):
        converters.string('À')
Exemplo n.º 3
0
def test_boolean_true():
    with pytest.raises(exc.ConvertationError):
        converters.string(True)
Exemplo n.º 4
0
def test_boolean_false():
    with pytest.raises(exc.ConvertationError):
        converters.string(False)
Exemplo n.º 5
0
def test_none():
    with pytest.raises(exc.ConvertationError):
        converters.string(None)
Exemplo n.º 6
0
def test_positive_number_unicode_string_type():
    assert isinstance(converters.string(u'1'), unicode)
Exemplo n.º 7
0
def test_positive_number_unicode_string():
    assert converters.string(u'1') == u'1'
Exemplo n.º 8
0
def test_positive_number_string():
    assert converters.string('1') == u'1'
Exemplo n.º 9
0
def test_zero():
    assert converters.string(0) == u'0'