diff --git a/test/with_advisory_lock/base_test.rb b/test/with_advisory_lock/base_test.rb new file mode 100644 index 0000000..691dc88 --- /dev/null +++ b/test/with_advisory_lock/base_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class WithAdvisoryLockBaseTest < GemTestCase + test 'should support advisory_locks_enabled' do + skip if is_sqlite3_adapter? + + assert Tag.connection.advisory_locks_enabled? + end +end