コード例 #1
0
 def test_convert_json_field_to_pandas_type_raises(self, inp):
     field = {"type": inp}
     with pytest.raises(
         ValueError, match=f"Unsupported or invalid field type: {inp}"
     ):
         convert_json_field_to_pandas_type(field)
コード例 #2
0
 def test_convert_json_field_to_pandas_type(self, inp, exp):
     field = {"name": "foo"}
     field.update(inp)
     assert convert_json_field_to_pandas_type(field) == exp