Sha256: abab928e4d72792edb3c02bb240ef33690f40b648cb8616dcbf436261524fcb9
Contents?: true
Size: 719 Bytes
Versions: 27
Compression:
Stored size: 719 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. require "./memcache_test_cases" if defined?(MemCache) class MemcacheTest < Minitest::Test include MemcacheTestCases def setup @cache = MemCache.new("localhost:11211") end if MemCache::VERSION <= "1.5.0" undef_method :test_append_in_web, :test_prepend_in_web, :test_replace_in_web, :test_append_in_background, :test_prepend_in_background, :test_replace_in_background end if MemCache::VERSION <= "1.7.0" undef_method :test_cas_in_web, :test_cas_in_background end end end
Version data entries
27 entries across 27 versions & 2 rubygems