summaryrefslogtreecommitdiff
path: root/test/support/client_integration_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/support/client_integration_test.rb')
-rw-r--r--test/support/client_integration_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/support/client_integration_test.rb b/test/support/client_integration_test.rb
new file mode 100644
index 0000000..b05db73
--- /dev/null
+++ b/test/support/client_integration_test.rb
@@ -0,0 +1,13 @@
+class ClientIntegrationTest
+
+ def setup
+ super
+ Celluloid.boot
+ end
+
+ def teardown
+ Celluloid.shutdown
+ super
+ end
+
+end