Sha256: 3080181f4e3d81f6f0400bd0b2cf0381663f54b730cd9d468a241a90e935a796
Contents?: true
Size: 347 Bytes
Versions: 11
Compression:
Stored size: 347 Bytes
Contents
# encoding: UTF-8 require "helper" class TestDistributedConnectionHandling < Test::Unit::TestCase include Helper::Distributed def test_ping assert_equal ["PONG"], r.ping end def test_select r.set "foo", "bar" r.select 14 assert_equal nil, r.get("foo") r.select 15 assert_equal "bar", r.get("foo") end end
Version data entries
11 entries across 11 versions & 3 rubygems