summaryrefslogtreecommitdiff
path: root/test/drb/test_acl.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_acl.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_acl.rb')
-rw-r--r--test/drb/test_acl.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/drb/test_acl.rb b/test/drb/test_acl.rb
index 7fe30f4c4a..a1ee1d48c5 100644
--- a/test/drb/test_acl.rb
+++ b/test/drb/test_acl.rb
@@ -7,6 +7,8 @@
require 'test/unit'
require 'drb/acl'
+module DRbTests
+
class SampleHosts
def initialize
list = %w(127.0.0.1 localhost
@@ -192,4 +194,4 @@ class ACLTest < Test::Unit::TestCase
end
end
-
+end