aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-05-26 09:03:46 +0930
committerGitHub <noreply@github.com>2017-05-26 09:03:46 +0930
commit89725a4bc7b716c7bfb621e5ec5abce017182a7d (patch)
tree76fb05a343cb4ccb86a38b9d03e301b1acaee023 /activerecord
parent289cd3755a3483f5f6de3b6d9b509e513cb14c5a (diff)
parent3b86a59b26b9fed14025a41d10453fae9059f3f0 (diff)
downloadrails-89725a4bc7b716c7bfb621e5ec5abce017182a7d.tar.gz
rails-89725a4bc7b716c7bfb621e5ec5abce017182a7d.tar.bz2
rails-89725a4bc7b716c7bfb621e5ec5abce017182a7d.zip
Merge pull request #29230 from koic/remove_duplicate_schema_authorization_test
Remove a duplicate test of schema_authorization_test in AR
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb b/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb
index bf570176f4..f86a76e08a 100644
--- a/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb
@@ -75,17 +75,6 @@ class SchemaAuthorizationTest < ActiveRecord::PostgreSQLTestCase
end
end
- def test_schema_uniqueness
- assert_nothing_raised do
- set_session_auth
- USERS.each do |u|
- set_session_auth u
- assert_equal u, @connection.select_value("SELECT name FROM #{TABLE_NAME} WHERE id = 1")
- set_session_auth
- end
- end
- end
-
def test_sequence_schema_caching
assert_nothing_raised do
USERS.each do |u|