Sha256: 7ff922f9f727840008af4f70bd9dcd73e59862971762f8874225c19afa74d7d5
Contents?: true
Size: 337 Bytes
Versions: 14
Compression:
Stored size: 337 Bytes
Contents
require 'test_helper' require 'robut/storage/hash_store' class Robut::Storage::HashStoreTest < Test::Unit::TestCase def setup @store = Robut::Storage::HashStore end def test_can_write_and_read assert_equal 'in the trunk', (@store['junk'] = 'in the trunk') assert_equal 'in the trunk', @store['junk'] end end
Version data entries
14 entries across 14 versions & 2 rubygems