summaryrefslogtreecommitdiff
path: root/test/support/celluloid_test.rb
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2016-10-17 08:58:08 +0000
committerazul <azul@riseup.net>2016-10-17 08:58:08 +0000
commit5dae257996c480c3f7b5a220fcaf97812a560466 (patch)
tree2edc9f7b40d7b04e4cf739e6e92b200f93cd57e7 /test/support/celluloid_test.rb
parent6721f0732facd87404eecc288357fd1bd0de48cf (diff)
parent5967c4a568aff2c5e73e3ab933aa68d25387aeb1 (diff)
Merge branch 'feature/log-requests-and-errors' into 'master'
Log requests and errors proper logging See merge request !6
Diffstat (limited to 'test/support/celluloid_test.rb')
-rw-r--r--test/support/celluloid_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/support/celluloid_test.rb b/test/support/celluloid_test.rb
new file mode 100644
index 0000000..ddcfcbb
--- /dev/null
+++ b/test/support/celluloid_test.rb
@@ -0,0 +1,14 @@
+class CelluloidTest < Minitest::Test
+
+ def setup
+ super
+ Celluloid.boot
+ Celluloid.logger = nil
+ end
+
+ def teardown
+ Celluloid.shutdown
+ super
+ end
+
+end