Sha256: 636b357f64347281445bf6e332b611732354d4984a1af1a709fd339ae938aa15

Contents?: true

Size: 361 Bytes

Versions: 2

Compression:

Stored size: 361 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

# * George Moschovitis <gm@navel.gr>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
glue-0.31.0 test/glue/tc_stores.rb
glue-0.30.0 test/glue/tc_stores.rb