aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql/statement_pool_test.rb
blob: 0d1f96802232c91d8e64065b799ccbb5b63474ef (plain) (tree)
1
2
3
4
5
6
7
8
9

                      


                                                          
                                                                                   

                                      
 



                              
 

                                                            


       
require 'cases/helper'

class MysqlStatementPoolTest < ActiveRecord::MysqlTestCase
  if Process.respond_to?(:fork)
    def test_cache_is_per_pid
      cache = ActiveRecord::ConnectionAdapters::MysqlAdapter::StatementPool.new(10)
      cache['foo'] = 'bar'
      assert_equal 'bar', cache['foo']

      pid = fork {
        lookup = cache['foo'];
        exit!(!lookup)
      }

      Process.waitpid pid
      assert $?.success?, 'process should exit successfully'
    end
  end
end