データベースクリーナーを使用したテストスイートで、次のエラーがランダムに発生します。関連すると思われる次の 2 つのコード スニペットと組み合わせて、データベース クリーナーを使用しています。
エラー:
Mysql2::Error: This connection is in use by: #<Thread:0x00000017bbf2f8 sleep>: TRUNCATE TABLE `cr_contacts`;
共有 DB 接続(考えられる原因)
class ActiveRecord::Base
mattr_accessor :shared_connection
@@shared_connection = nil
def self.connection
@@shared_connection || retrieve_connection
end
end
# Forces all threads to share the same connection. This works on
# Capybara because it starts the web server in a thread.
ActiveRecord::Base.shared_connection = ActiveRecord::Base.connection