summaryrefslogtreecommitdiff
path: root/test/support/client_integration_test.rb
blob: b05db73da621574a70815fb5e0452e6423a02635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ClientIntegrationTest

  def setup
    super
    Celluloid.boot
  end

  def teardown
    Celluloid.shutdown
    super
  end

end