Sha256: 92e8a7b742024299d98ef1003664e9c02d0dd283b810f32a39828d6a88deec13
Contents?: true
Size: 641 Bytes
Versions: 6
Compression:
Stored size: 641 Bytes
Contents
require 'spec_helper' require 'memcache' describe Oboe::API::Memcache do it 'Stock MemCache should be loaded, defined and ready' do defined?(::MemCache).should_not == nil end it 'MemCache should have oboe methods defined' do Oboe::API::Memcache::MEMCACHE_OPS.each do |m| if ::MemCache.method_defined?(m) ::MemCache.method_defined?("#{m}_with_oboe").should == true end ::MemCache.method_defined?(:request_setup_with_oboe).should == true ::MemCache.method_defined?(:cache_get_with_oboe).should == true ::MemCache.method_defined?(:get_multi_with_oboe).should == true end end end
Version data entries
6 entries across 6 versions & 1 rubygems