diff options
author | Matthew Draper <matthew@trebex.net> | 2017-05-26 09:03:46 +0930 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-26 09:03:46 +0930 |
commit | 89725a4bc7b716c7bfb621e5ec5abce017182a7d (patch) | |
tree | 76fb05a343cb4ccb86a38b9d03e301b1acaee023 /activerecord | |
parent | 289cd3755a3483f5f6de3b6d9b509e513cb14c5a (diff) | |
parent | 3b86a59b26b9fed14025a41d10453fae9059f3f0 (diff) | |
download | rails-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.rb | 11 |
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| |