diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-06-17 15:39:13 -0600 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-06-17 16:02:53 -0600 |
commit | 4d3e88fc757a1b6f6c468418af01dca677e41edf (patch) | |
tree | 82e1d7dc1267da9f65cdd9915459a508324e4bb3 /activerecord/test/cases/migration_test.rb | |
parent | 9f86780226c86fae30d59d04bd53449b8c7a1ad8 (diff) | |
download | rails-4d3e88fc757a1b6f6c468418af01dca677e41edf.tar.gz rails-4d3e88fc757a1b6f6c468418af01dca677e41edf.tar.bz2 rails-4d3e88fc757a1b6f6c468418af01dca677e41edf.zip |
Don't type cast the default on the column
If we want to have type decorators mess with the attribute, but not the
column, we need to stop type casting on the column. Where possible, we
changed the tests to test the value of `column_defaults`, which is
public API. `Column#default` is not.
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r-- | activerecord/test/cases/migration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index 9855835e27..6b840e16bb 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -567,7 +567,7 @@ if ActiveRecord::Base.connection.supports_bulk_alter? assert_equal 8, columns.size [:name, :qualification, :experience].each {|s| assert_equal :string, column(s).type } - assert_equal 0, column(:age).default + assert_equal '0', column(:age).default end def test_removing_columns |