diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-09-08 23:35:06 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-09-08 23:35:06 +0900 |
commit | 952ae3eca77da4632fd20ff040ca8581dbbad25d (patch) | |
tree | 9ab54d8409079421b95a095e1b47e3237352e008 /activerecord/test/cases/adapters/postgresql | |
parent | 5f35c60f848dda275e34bc055f58031c08d7b416 (diff) | |
download | rails-952ae3eca77da4632fd20ff040ca8581dbbad25d.tar.gz rails-952ae3eca77da4632fd20ff040ca8581dbbad25d.tar.bz2 rails-952ae3eca77da4632fd20ff040ca8581dbbad25d.zip |
`supports_xxx?` returns whether a feature is supported by the backend
Rather than a configuration on the connection.
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql')
-rw-r--r-- | activerecord/test/cases/adapters/postgresql/advisory_locks_disabled_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/advisory_locks_disabled_test.rb b/activerecord/test/cases/adapters/postgresql/advisory_locks_disabled_test.rb deleted file mode 100644 index f14e9baeb9..0000000000 --- a/activerecord/test/cases/adapters/postgresql/advisory_locks_disabled_test.rb +++ /dev/null @@ -1,8 +0,0 @@ -# frozen_string_literal: true - -require "cases/helper" -require "cases/adapters/helpers/test_supports_advisory_locks" - -class PostgresqlAdvisoryLocksDisabledTest < ActiveRecord::PostgreSQLTestCase - include TestSupportsAdvisoryLocks -end |