aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/test_helper.rb
blob: 8b157c9b463b68110d45267127a36d140f280ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'action_cable'
require 'active_support/testing/autorun'

require 'puma'

require 'mocha/setup'

require 'rack/mock'

# 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