summaryrefslogtreecommitdiff
path: root/test/drb/test_drb.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-01 03:07:58 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-01 03:07:58 +0000
commit5cd71131b849db00f94c87dc6fcf403731338161 (patch)
treebc28733a54425625760aad48e44929d1d38945f1 /test/drb/test_drb.rb
parent09ab3a0a9f9fa7d3f091bec988c52b9f8ed62b41 (diff)
* test/drb: Wrap tests definitions by DRbTests module. This makes
several tests (ACLEntryTest, TestBug4409, etc.) easier to understand that they are tests for DRb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46293 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/drb/test_drb.rb')
-rw-r--r--test/drb/test_drb.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/drb/test_drb.rb b/test/drb/test_drb.rb
index 573818558a..7df9ba52c2 100644
--- a/test/drb/test_drb.rb
+++ b/test/drb/test_drb.rb
@@ -1,5 +1,7 @@
require_relative 'drbtest'
+module DRbTests
+
class TestDRbCore < Test::Unit::TestCase
include DRbCore
@@ -320,3 +322,5 @@ class TestBug4409 < Test::Unit::TestCase
assert(@there.foo?(foo))
end
end
+
+end