diff options
author | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-13 14:06:50 +0000 |
---|---|---|
committer | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-13 14:06:50 +0000 |
commit | 40826c894091adfd923e90681d1d5556665208f0 (patch) | |
tree | c32d9ab64c2dee4abafdbd71ddb8eb4206aff9f3 /test/rinda | |
parent | 2e6ae08fbd31b7d54630aeecf509a59036306369 (diff) | |
download | ruby-40826c894091adfd923e90681d1d5556665208f0.tar.gz ruby-40826c894091adfd923e90681d1d5556665208f0.tar.xz ruby-40826c894091adfd923e90681d1d5556665208f0.zip |
change pattern matching [druby-ja:98]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rinda')
-rw-r--r-- | test/rinda/test_rinda.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb index a87c66258..684e44f4f 100644 --- a/test/rinda/test_rinda.rb +++ b/test/rinda/test_rinda.rb @@ -26,11 +26,12 @@ module TupleSpaceTestModule assert(tmpl.match(['Rinda', 2, :hello])) assert(!tmpl.match(['Rinda', 2, Symbol])) assert(!tmpl.match([1, 2, :hello])) + assert(tmpl.match([/^rinda/i, nil, :hello])) tmpl = Rinda::Template.new([Symbol]) assert_equal(1, tmpl.size) assert(tmpl.match([:hello])) - assert(!tmpl.match([Symbol])) + assert(tmpl.match([Symbol])) assert(!tmpl.match(['Symbol'])) tmpl = Rinda::Template.new({"message"=>String, "name"=>String}) |