Sha256: a80e90b2cbbb48ea0c084354323b41b7b9253a428cf753d3e42176a8be6ce4fc
Contents?: true
Size: 389 Bytes
Versions: 23
Compression:
Stored size: 389 Bytes
Contents
# encoding: UTF-8 require File.expand_path("helper", File.dirname(__FILE__)) 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
23 entries across 22 versions & 8 rubygems