Sha256: 892354e9a781a813b10af419fe8f29d1122bdb9bb45ecc09716d0061e101ce9a

Contents?: true

Size: 323 Bytes

Versions: 2

Compression:

Stored size: 323 Bytes

Contents

$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..', '..', 'lib')

require 'test/unit'

require 'glue/cache/memory'

class TC_CachingStores < Test::Unit::TestCase # :nodoc: all
  include Glue
  
  def test_memory
    s = MemoryCache.new
    s.write('test', 'hello', { :none => 1})
    s.read('test')
  end
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
glue-0.41.0 test/glue/tc_stores.rb
glue-0.40.0 test/glue/tc_stores.rb