Example #1
0
    def test_many_to_python(self):
        field = MultipleValuesField()

        assert field.many_to_python('hello,world') == ['hello', 'world']
    def test_many_to_python(self):
        field = MultipleValuesField()

        assert field.many_to_python('hello,world') == ['hello', 'world']
Example #3
0
    def test_many_to_python(self):
        field = MultipleValuesField()

        assert field.many_to_python("hello,world") == ["hello", "world"]