summaryrefslogtreecommitdiff
path: root/test/support/celluloid_test.rb
blob: ddcfcbb1040c2dc0e69f49344ce9b78ca1cc458d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CelluloidTest < Minitest::Test

  def setup
    super
    Celluloid.boot
    Celluloid.logger = nil
  end

  def teardown
    Celluloid.shutdown
    super
  end

end