FEATURE: allow registration of an array custom field

This commit is contained in:
Sam
2018-05-22 16:48:39 +10:00
parent bcfd9cf8b5
commit 1ac1ee4287
2 changed files with 27 additions and 8 deletions

View File

@ -98,6 +98,15 @@ describe HasCustomFields do
end
it "handles arrays properly" do
CustomFieldsTestItem.register_custom_field_type "array", [:integer]
test_item = CustomFieldsTestItem.new
test_item.custom_fields = { "array" => ["1"] }
test_item.save
db_item = CustomFieldsTestItem.find(test_item.id)
expect(db_item.custom_fields).to eq("array" => [1])
test_item = CustomFieldsTestItem.new
test_item.custom_fields = { "a" => ["b", "c", "d"] }
test_item.save