Memcache Mock
Simple library to mock a key/value storage system.
The API is based in the Dalli Memcache Ruby Client. So any time you need to mock your code that integrates Dalli you can exponse an instance of MemcacheMock instead.
Use
require "memcache_mock"
cache = MemcacheMock.new
cache.set( "key", "value" )
cache.get( "key" ) # => "value"
Status
The actual status is Beta but functional. The API only supports the methods we have needed so far.
If you have any suggestion we'll appreciate pull requests.