aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/schema_authorization_test_postgresql.rb
diff options
context:
space:
mode:
authorKris Selden <kris.selden@gmail.com>2010-03-26 15:21:55 -0700
committerwycats <wycats@gmail.com>2010-03-26 17:18:33 -0700
commitafb786ad8a27ae593790a5788441a9083a516195 (patch)
treed7bbd242d75d8a9aca1ff3bb0ee2b45f4abaffaf /activerecord/test/cases/schema_authorization_test_postgresql.rb
parent56a86c2191e159448bd2644f105f629c34c85c48 (diff)
downloadrails-afb786ad8a27ae593790a5788441a9083a516195.tar.gz
rails-afb786ad8a27ae593790a5788441a9083a516195.tar.bz2
rails-afb786ad8a27ae593790a5788441a9083a516195.zip
In PostgreSQLAdapter, switch tables query to use current_schemas function [#918 state:resolved]
Signed-off-by: wycats <wycats@gmail.com>
Diffstat (limited to 'activerecord/test/cases/schema_authorization_test_postgresql.rb')
-rw-r--r--activerecord/test/cases/schema_authorization_test_postgresql.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/test/cases/schema_authorization_test_postgresql.rb b/activerecord/test/cases/schema_authorization_test_postgresql.rb
index ba7754513d..2860f1ad48 100644
--- a/activerecord/test/cases/schema_authorization_test_postgresql.rb
+++ b/activerecord/test/cases/schema_authorization_test_postgresql.rb
@@ -66,6 +66,15 @@ class SchemaAuthorizationTest < ActiveRecord::TestCase
end
end
end
+
+ def test_tables_in_current_schemas
+ assert !@connection.tables.include?(TABLE_NAME)
+ USERS.each do |u|
+ set_session_auth u
+ assert @connection.tables.include?(TABLE_NAME)
+ set_session_auth
+ end
+ end
private
def set_session_auth auth = nil