aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/test/test_helper.rb
blob: 797e7786d193ab71eb5982abbd19ac28fb7712a3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                        
 

              
                     
 
                   
                                                         
 

                                                                       
 
                                                     



                                                          

       
 


                         
     
   
require 'action_cable'
require 'active_support/testing/autorun'

require 'puma'

require 'mocha/setup'

require 'rack/mock'
require 'active_support/core_ext/hash/indifferent_access'

# Require all the stubs and models
Dir[File.dirname(__FILE__) + '/stubs/*.rb'].each {|file| require file }

class ActionCable::TestCase < ActiveSupport::TestCase
  def wait_for_async
    e = Concurrent.global_io_executor
    until e.completed_task_count == e.scheduled_task_count
      sleep 0.1
    end
  end

  def run_in_eventmachine
    yield
    wait_for_async
  end
end