aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/json_test.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-07 11:12:50 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-07 11:12:50 -0300
commit09206716f8695f6b8467f15c1befa5a4c3c10978 (patch)
tree5c042da756a7ddf8899172fd76825b21c3dd42f5 /activerecord/test/cases/adapters/postgresql/json_test.rb
parent186978821881f56a07df3b16b5ea6bdb629fdc02 (diff)
parent3559230720d4ea52d290da4ff4734b5236220fcd (diff)
downloadrails-09206716f8695f6b8467f15c1befa5a4c3c10978.tar.gz
rails-09206716f8695f6b8467f15c1befa5a4c3c10978.tar.bz2
rails-09206716f8695f6b8467f15c1befa5a4c3c10978.zip
Merge pull request #16074 from sgrif/sg-remove-text-predicate
Remove the `text?` predicate from the type objects
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/json_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/json_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/json_test.rb b/activerecord/test/cases/adapters/postgresql/json_test.rb
index 50135151c2..cb3c02fa3a 100644
--- a/activerecord/test/cases/adapters/postgresql/json_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/json_test.rb
@@ -35,7 +35,6 @@ class PostgresqlJSONTest < ActiveRecord::TestCase
assert_equal :json, column.type
assert_equal "json", column.sql_type
assert_not column.number?
- assert_not column.text?
assert_not column.binary?
assert_not column.array
end