summaryrefslogtreecommitdiff
path: root/test/support/celluloid_test.rb
blob: a00edffd7e09451a035326304e97d6838e716ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CelluloidTest < Minitest::Test
  def setup
    super
    Celluloid.boot
    Celluloid.logger = nil
  end

  def teardown
    Celluloid.shutdown
    super
  end
end