From f18a4d07eff6f20871d0e7c48d28d5a9f744a487 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Thu, 16 Oct 2014 11:40:41 +0200 Subject: pg, test assigning non-array values to an array column. Closes #14716. The behavior has changed since 4.1 and non-array values are no longer type casted to a blank array. This way the user can define custom validations on that property. --- activerecord/test/cases/adapters/postgresql/array_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/adapters/postgresql/array_test.rb b/activerecord/test/cases/adapters/postgresql/array_test.rb index ff553c3f1a..fa7bebf08b 100644 --- a/activerecord/test/cases/adapters/postgresql/array_test.rb +++ b/activerecord/test/cases/adapters/postgresql/array_test.rb @@ -254,6 +254,15 @@ class PostgresqlArrayTest < ActiveRecord::TestCase end end + def test_assigning_non_array_value + record = PgArray.new(tags: "not-an-array") + assert_equal "not-an-array", record.tags + e = assert_raises(ActiveRecord::StatementInvalid) do + record.save! + end + assert_instance_of PG::InvalidTextRepresentation, e.original_exception + end + private def assert_cycle field, array # test creation -- cgit v1.2.3