diff --git a/disco/types/base.py b/disco/types/base.py index bacfe26..7e2bc95 100644 --- a/disco/types/base.py +++ b/disco/types/base.py @@ -224,9 +224,7 @@ def text(obj): if six.PY2: if isinstance(obj, str): return obj.decode('utf-8') - return obj - else: - return str(obj) + return six.text_type(obj) def with_equality(field): diff --git a/tests/types/base.py b/tests/types/base.py index b22244e..1dbfc2d 100644 --- a/tests/types/base.py +++ b/tests/types/base.py @@ -1,6 +1,6 @@ import pytest -from disco.types.base import Model, Field, cached_property +from disco.types.base import Model, Field, cached_property, text @pytest.fixture @@ -39,3 +39,14 @@ def test_defaults(): model = TestModel() assert model.a is None assert model.b == 0 + + +def test_text_casting(): + class TestModel(Model): + a = Field(text) + + model = TestModel({'a': 1}) + assert model.a == '1' + + model = TestModel({'a': {}}) + assert model.a == '{}'