diff options
author | Koichi ITO <koic.ito@gmail.com> | 2017-05-25 21:54:18 +0900 |
---|---|---|
committer | Koichi ITO <koic.ito@gmail.com> | 2017-05-25 21:54:18 +0900 |
commit | 3b86a59b26b9fed14025a41d10453fae9059f3f0 (patch) | |
tree | dbc1165737bb22227a9fb976626b8871a3eb10e1 /activerecord | |
parent | 7424a179d61c15fcbd2a2d9937202520c878b2ff (diff) | |
download | rails-3b86a59b26b9fed14025a41d10453fae9059f3f0.tar.gz rails-3b86a59b26b9fed14025a41d10453fae9059f3f0.tar.bz2 rails-3b86a59b26b9fed14025a41d10453fae9059f3f0.zip |
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| |