aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/schema_authorization_test_postgresql.rb
diff options
context:
space:
mode:
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