diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-08-19 02:47:21 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-19 02:47:21 -0300 |
commit | c1d612cf5a9d25133ab50cc057ebb35d337e37fa (patch) | |
tree | eb7a9bf2e680d92d155309191ed9bcdd1e244d86 /activerecord/test/cases/adapters/mysql2 | |
parent | a0d24a9c4dfcebb34d5b09220d4b00952ae2d080 (diff) | |
parent | 9e6a455381f8581893e66235b2799b3ada6b2920 (diff) | |
download | rails-c1d612cf5a9d25133ab50cc057ebb35d337e37fa.tar.gz rails-c1d612cf5a9d25133ab50cc057ebb35d337e37fa.tar.bz2 rails-c1d612cf5a9d25133ab50cc057ebb35d337e37fa.zip |
Merge pull request #26219 from kamipo/remove_unused_blob_or_text_column
Remove unused `blob_or_text_column?` method
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2')
-rw-r--r-- | activerecord/test/cases/adapters/mysql2/enum_test.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/enum_test.rb b/activerecord/test/cases/adapters/mysql2/enum_test.rb index 9f51223d58..7ad3e3ca2d 100644 --- a/activerecord/test/cases/adapters/mysql2/enum_test.rb +++ b/activerecord/test/cases/adapters/mysql2/enum_test.rb @@ -9,11 +9,6 @@ class Mysql2EnumTest < ActiveRecord::Mysql2TestCase assert_equal 8, column.limit end - def test_should_not_be_blob_or_text_column - column = EnumTest.columns_hash["enum_column"] - assert_not column.blob_or_text_column? - end - def test_should_not_be_unsigned column = EnumTest.columns_hash["enum_column"] assert_not column.unsigned? |