juno 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +2 -4
- data/Gemfile +3 -1
- data/README.md +40 -8
- data/benchmarks/run.rb +17 -5
- data/lib/juno/adapters/activerecord.rb +23 -14
- data/lib/juno/adapters/cassandra.rb +11 -0
- data/lib/juno/adapters/couch.rb +9 -0
- data/lib/juno/adapters/datamapper.rb +10 -0
- data/lib/juno/adapters/dbm.rb +8 -0
- data/lib/juno/adapters/file.rb +2 -0
- data/lib/juno/adapters/fog.rb +9 -0
- data/lib/juno/adapters/gdbm.rb +8 -0
- data/lib/juno/adapters/localmemcache.rb +8 -0
- data/lib/juno/adapters/lruhash.rb +8 -0
- data/lib/juno/adapters/memcached_dalli.rb +9 -0
- data/lib/juno/adapters/memcached_native.rb +10 -0
- data/lib/juno/adapters/memory.rb +2 -0
- data/lib/juno/adapters/mongo.rb +11 -0
- data/lib/juno/adapters/null.rb +2 -0
- data/lib/juno/adapters/pstore.rb +9 -2
- data/lib/juno/adapters/redis.rb +5 -0
- data/lib/juno/adapters/riak.rb +9 -0
- data/lib/juno/adapters/sdbm.rb +8 -0
- data/lib/juno/adapters/sequel.rb +10 -0
- data/lib/juno/adapters/sqlite.rb +9 -0
- data/lib/juno/adapters/tokyocabinet.rb +16 -4
- data/lib/juno/adapters/yaml.rb +2 -0
- data/lib/juno/base.rb +1 -0
- data/lib/juno/builder.rb +2 -0
- data/lib/juno/cache.rb +2 -0
- data/lib/juno/expires.rb +1 -0
- data/lib/juno/lock.rb +37 -0
- data/lib/juno/proxy.rb +1 -0
- data/lib/juno/stack.rb +2 -0
- data/lib/juno/transformer.rb +16 -4
- data/lib/juno/version.rb +3 -1
- data/lib/juno.rb +33 -2
- data/spec/adapter_activerecord_spec.rb +20 -34
- data/spec/adapter_cassandra_spec.rb +9 -23
- data/spec/adapter_couch_spec.rb +9 -23
- data/spec/adapter_datamapper_spec.rb +36 -50
- data/spec/adapter_dbm_spec.rb +9 -23
- data/spec/adapter_file_spec.rb +9 -23
- data/spec/adapter_fog_spec.rb +12 -29
- data/spec/adapter_gdbm_spec.rb +9 -23
- data/spec/adapter_localmemcache_spec.rb +9 -23
- data/spec/adapter_lruhash_spec.rb +24 -38
- data/spec/adapter_memcached_dalli_spec.rb +10 -24
- data/spec/adapter_memcached_native_spec.rb +10 -24
- data/spec/adapter_memcached_spec.rb +10 -24
- data/spec/adapter_memory_spec.rb +24 -38
- data/spec/adapter_mongo_spec.rb +9 -23
- data/spec/adapter_pstore_spec.rb +12 -26
- data/spec/adapter_redis_spec.rb +10 -24
- data/spec/adapter_riak_spec.rb +9 -23
- data/spec/adapter_sdbm_spec.rb +9 -23
- data/spec/adapter_sequel_spec.rb +9 -23
- data/spec/adapter_sqlite_spec.rb +9 -23
- data/spec/adapter_tokyocabinet_bdb_spec.rb +13 -0
- data/spec/adapter_tokyocabinet_hdb_spec.rb +13 -0
- data/spec/adapter_yaml_spec.rb +12 -26
- data/spec/cache_file_memory_spec.rb +22 -43
- data/spec/cache_memory_null_spec.rb +13 -34
- data/spec/expires_file_spec.rb +56 -76
- data/spec/expires_memory_spec.rb +35 -54
- data/spec/generate.rb +147 -160
- data/spec/helper.rb +39 -0
- data/spec/junospecs.rb +612 -610
- data/spec/lock_spec.rb +31 -0
- data/spec/null_adapter_spec.rb +15 -29
- data/spec/proxy_expires_memory_spec.rb +37 -58
- data/spec/proxy_redis_spec.rb +13 -33
- data/spec/simple_activerecord_spec.rb +34 -48
- data/spec/simple_activerecord_with_expires_spec.rb +35 -49
- data/spec/simple_cassandra_spec.rb +35 -49
- data/spec/simple_couch_spec.rb +34 -48
- data/spec/simple_couch_with_expires_spec.rb +35 -49
- data/spec/simple_datamapper_spec.rb +34 -48
- data/spec/simple_datamapper_with_expires_spec.rb +35 -49
- data/spec/simple_datamapper_with_repository_spec.rb +34 -48
- data/spec/simple_dbm_spec.rb +34 -48
- data/spec/simple_dbm_with_expires_spec.rb +35 -49
- data/spec/simple_file_spec.rb +34 -48
- data/spec/simple_file_with_expires_spec.rb +35 -49
- data/spec/simple_fog_spec.rb +37 -54
- data/spec/simple_fog_with_expires_spec.rb +39 -57
- data/spec/simple_gdbm_spec.rb +34 -48
- data/spec/simple_gdbm_with_expires_spec.rb +35 -49
- data/spec/simple_hashfile_spec.rb +34 -48
- data/spec/simple_hashfile_with_expires_spec.rb +35 -49
- data/spec/simple_localmemcache_spec.rb +34 -48
- data/spec/simple_localmemcache_with_expires_spec.rb +35 -49
- data/spec/simple_lruhash_spec.rb +34 -48
- data/spec/simple_lruhash_with_expires_spec.rb +35 -49
- data/spec/simple_memcached_dalli_spec.rb +35 -49
- data/spec/simple_memcached_native_spec.rb +35 -49
- data/spec/simple_memcached_spec.rb +35 -49
- data/spec/simple_memory_spec.rb +34 -48
- data/spec/simple_memory_with_expires_spec.rb +35 -49
- data/spec/simple_mongo_spec.rb +34 -48
- data/spec/simple_mongo_with_expires_spec.rb +35 -49
- data/spec/simple_null_spec.rb +25 -39
- data/spec/simple_pstore_spec.rb +34 -48
- data/spec/simple_pstore_with_expires_spec.rb +35 -49
- data/spec/simple_redis_spec.rb +35 -49
- data/spec/simple_riak_spec.rb +34 -48
- data/spec/simple_riak_with_expires_spec.rb +35 -49
- data/spec/simple_sdbm_spec.rb +34 -48
- data/spec/simple_sdbm_with_expires_spec.rb +35 -49
- data/spec/simple_sequel_spec.rb +34 -48
- data/spec/simple_sequel_with_expires_spec.rb +35 -49
- data/spec/simple_sqlite_spec.rb +34 -48
- data/spec/simple_sqlite_with_expires_spec.rb +35 -49
- data/spec/simple_tokyocabinet_spec.rb +34 -48
- data/spec/simple_tokyocabinet_with_expires_spec.rb +35 -49
- data/spec/simple_yaml_spec.rb +34 -48
- data/spec/simple_yaml_with_expires_spec.rb +35 -49
- data/spec/stack_file_memory_spec.rb +15 -38
- data/spec/stack_memory_file_spec.rb +14 -37
- data/spec/transformer_bson_spec.rb +20 -39
- data/spec/transformer_compress_spec.rb +17 -36
- data/spec/transformer_json_spec.rb +20 -39
- data/spec/transformer_marshal_base64_spec.rb +36 -55
- data/spec/transformer_marshal_escape_spec.rb +36 -55
- data/spec/transformer_marshal_md5_spec.rb +36 -55
- data/spec/transformer_marshal_md5_spread_spec.rb +36 -55
- data/spec/transformer_msgpack_spec.rb +20 -39
- data/spec/transformer_ox_spec.rb +40 -0
- data/spec/transformer_yaml_spec.rb +35 -54
- metadata +11 -6
- data/spec/adapter_tokyocabinet_spec.rb +0 -27
- data/spec/simpl_memory_with_expires_spec.rb +0 -53
@@ -0,0 +1,40 @@
|
|
1
|
+
# Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
describe_juno "transformer_ox" do
|
5
|
+
def new_store
|
6
|
+
Juno.build do
|
7
|
+
use :Transformer, :key => :ox, :value => :ox
|
8
|
+
adapter :Memory
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
include_context 'setup_store'
|
13
|
+
it_should_behave_like 'null_objectkey_objectvalue'
|
14
|
+
it_should_behave_like 'null_objectkey_stringvalue'
|
15
|
+
it_should_behave_like 'null_objectkey_hashvalue'
|
16
|
+
it_should_behave_like 'null_stringkey_objectvalue'
|
17
|
+
it_should_behave_like 'null_stringkey_stringvalue'
|
18
|
+
it_should_behave_like 'null_stringkey_hashvalue'
|
19
|
+
it_should_behave_like 'null_hashkey_objectvalue'
|
20
|
+
it_should_behave_like 'null_hashkey_stringvalue'
|
21
|
+
it_should_behave_like 'null_hashkey_hashvalue'
|
22
|
+
it_should_behave_like 'store_objectkey_objectvalue'
|
23
|
+
it_should_behave_like 'store_objectkey_stringvalue'
|
24
|
+
it_should_behave_like 'store_objectkey_hashvalue'
|
25
|
+
it_should_behave_like 'store_stringkey_objectvalue'
|
26
|
+
it_should_behave_like 'store_stringkey_stringvalue'
|
27
|
+
it_should_behave_like 'store_stringkey_hashvalue'
|
28
|
+
it_should_behave_like 'store_hashkey_objectvalue'
|
29
|
+
it_should_behave_like 'store_hashkey_stringvalue'
|
30
|
+
it_should_behave_like 'store_hashkey_hashvalue'
|
31
|
+
it_should_behave_like 'returndifferent_objectkey_objectvalue'
|
32
|
+
it_should_behave_like 'returndifferent_objectkey_stringvalue'
|
33
|
+
it_should_behave_like 'returndifferent_objectkey_hashvalue'
|
34
|
+
it_should_behave_like 'returndifferent_stringkey_objectvalue'
|
35
|
+
it_should_behave_like 'returndifferent_stringkey_stringvalue'
|
36
|
+
it_should_behave_like 'returndifferent_stringkey_hashvalue'
|
37
|
+
it_should_behave_like 'returndifferent_hashkey_objectvalue'
|
38
|
+
it_should_behave_like 'returndifferent_hashkey_stringvalue'
|
39
|
+
it_should_behave_like 'returndifferent_hashkey_hashvalue'
|
40
|
+
end
|
@@ -1,59 +1,40 @@
|
|
1
|
-
# Generated
|
1
|
+
# Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
|
2
2
|
require 'helper'
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
Juno.build do
|
7
|
-
|
8
|
-
|
9
|
-
end.close
|
10
|
-
|
11
|
-
describe "transformer_yaml" do
|
12
|
-
before do
|
13
|
-
@store =
|
14
|
-
Juno.build do
|
15
|
-
use :Transformer, :key => :yaml, :value => :yaml
|
16
|
-
adapter :Memory
|
17
|
-
end
|
18
|
-
@store.clear
|
19
|
-
end
|
20
|
-
|
21
|
-
after do
|
22
|
-
@store.close.should == nil if @store
|
4
|
+
describe_juno "transformer_yaml" do
|
5
|
+
def new_store
|
6
|
+
Juno.build do
|
7
|
+
use :Transformer, :key => :yaml, :value => :yaml
|
8
|
+
adapter :Memory
|
23
9
|
end
|
24
|
-
|
25
|
-
it_should_behave_like 'null_objectkey_objectvalue'
|
26
|
-
it_should_behave_like 'null_objectkey_stringvalue'
|
27
|
-
it_should_behave_like 'null_objectkey_hashvalue'
|
28
|
-
it_should_behave_like 'null_stringkey_objectvalue'
|
29
|
-
it_should_behave_like 'null_stringkey_stringvalue'
|
30
|
-
it_should_behave_like 'null_stringkey_hashvalue'
|
31
|
-
it_should_behave_like 'null_hashkey_objectvalue'
|
32
|
-
it_should_behave_like 'null_hashkey_stringvalue'
|
33
|
-
it_should_behave_like 'null_hashkey_hashvalue'
|
34
|
-
it_should_behave_like 'store_objectkey_objectvalue'
|
35
|
-
it_should_behave_like 'store_objectkey_stringvalue'
|
36
|
-
it_should_behave_like 'store_objectkey_hashvalue'
|
37
|
-
it_should_behave_like 'store_stringkey_objectvalue'
|
38
|
-
it_should_behave_like 'store_stringkey_stringvalue'
|
39
|
-
it_should_behave_like 'store_stringkey_hashvalue'
|
40
|
-
it_should_behave_like 'store_hashkey_objectvalue'
|
41
|
-
it_should_behave_like 'store_hashkey_stringvalue'
|
42
|
-
it_should_behave_like 'store_hashkey_hashvalue'
|
43
|
-
it_should_behave_like 'returndifferent_objectkey_objectvalue'
|
44
|
-
it_should_behave_like 'returndifferent_objectkey_stringvalue'
|
45
|
-
it_should_behave_like 'returndifferent_objectkey_hashvalue'
|
46
|
-
it_should_behave_like 'returndifferent_stringkey_objectvalue'
|
47
|
-
it_should_behave_like 'returndifferent_stringkey_stringvalue'
|
48
|
-
it_should_behave_like 'returndifferent_stringkey_hashvalue'
|
49
|
-
it_should_behave_like 'returndifferent_hashkey_objectvalue'
|
50
|
-
it_should_behave_like 'returndifferent_hashkey_stringvalue'
|
51
|
-
it_should_behave_like 'returndifferent_hashkey_hashvalue'
|
52
|
-
|
53
10
|
end
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
11
|
+
|
12
|
+
include_context 'setup_store'
|
13
|
+
it_should_behave_like 'null_objectkey_objectvalue'
|
14
|
+
it_should_behave_like 'null_objectkey_stringvalue'
|
15
|
+
it_should_behave_like 'null_objectkey_hashvalue'
|
16
|
+
it_should_behave_like 'null_stringkey_objectvalue'
|
17
|
+
it_should_behave_like 'null_stringkey_stringvalue'
|
18
|
+
it_should_behave_like 'null_stringkey_hashvalue'
|
19
|
+
it_should_behave_like 'null_hashkey_objectvalue'
|
20
|
+
it_should_behave_like 'null_hashkey_stringvalue'
|
21
|
+
it_should_behave_like 'null_hashkey_hashvalue'
|
22
|
+
it_should_behave_like 'store_objectkey_objectvalue'
|
23
|
+
it_should_behave_like 'store_objectkey_stringvalue'
|
24
|
+
it_should_behave_like 'store_objectkey_hashvalue'
|
25
|
+
it_should_behave_like 'store_stringkey_objectvalue'
|
26
|
+
it_should_behave_like 'store_stringkey_stringvalue'
|
27
|
+
it_should_behave_like 'store_stringkey_hashvalue'
|
28
|
+
it_should_behave_like 'store_hashkey_objectvalue'
|
29
|
+
it_should_behave_like 'store_hashkey_stringvalue'
|
30
|
+
it_should_behave_like 'store_hashkey_hashvalue'
|
31
|
+
it_should_behave_like 'returndifferent_objectkey_objectvalue'
|
32
|
+
it_should_behave_like 'returndifferent_objectkey_stringvalue'
|
33
|
+
it_should_behave_like 'returndifferent_objectkey_hashvalue'
|
34
|
+
it_should_behave_like 'returndifferent_stringkey_objectvalue'
|
35
|
+
it_should_behave_like 'returndifferent_stringkey_stringvalue'
|
36
|
+
it_should_behave_like 'returndifferent_stringkey_hashvalue'
|
37
|
+
it_should_behave_like 'returndifferent_hashkey_objectvalue'
|
38
|
+
it_should_behave_like 'returndifferent_hashkey_stringvalue'
|
39
|
+
it_should_behave_like 'returndifferent_hashkey_hashvalue'
|
59
40
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: juno
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-
|
14
|
+
date: 2012-12-03 00:00:00.000000000 Z
|
15
15
|
dependencies: []
|
16
16
|
description: A unified interface to key/value stores (moneta replacement)
|
17
17
|
email:
|
@@ -63,6 +63,7 @@ files:
|
|
63
63
|
- lib/juno/builder.rb
|
64
64
|
- lib/juno/cache.rb
|
65
65
|
- lib/juno/expires.rb
|
66
|
+
- lib/juno/lock.rb
|
66
67
|
- lib/juno/proxy.rb
|
67
68
|
- lib/juno/stack.rb
|
68
69
|
- lib/juno/transformer.rb
|
@@ -88,7 +89,8 @@ files:
|
|
88
89
|
- spec/adapter_sdbm_spec.rb
|
89
90
|
- spec/adapter_sequel_spec.rb
|
90
91
|
- spec/adapter_sqlite_spec.rb
|
91
|
-
- spec/
|
92
|
+
- spec/adapter_tokyocabinet_bdb_spec.rb
|
93
|
+
- spec/adapter_tokyocabinet_hdb_spec.rb
|
92
94
|
- spec/adapter_yaml_spec.rb
|
93
95
|
- spec/cache_file_memory_spec.rb
|
94
96
|
- spec/cache_memory_null_spec.rb
|
@@ -97,10 +99,10 @@ files:
|
|
97
99
|
- spec/generate.rb
|
98
100
|
- spec/helper.rb
|
99
101
|
- spec/junospecs.rb
|
102
|
+
- spec/lock_spec.rb
|
100
103
|
- spec/null_adapter_spec.rb
|
101
104
|
- spec/proxy_expires_memory_spec.rb
|
102
105
|
- spec/proxy_redis_spec.rb
|
103
|
-
- spec/simpl_memory_with_expires_spec.rb
|
104
106
|
- spec/simple_activerecord_spec.rb
|
105
107
|
- spec/simple_activerecord_with_expires_spec.rb
|
106
108
|
- spec/simple_cassandra_spec.rb
|
@@ -156,6 +158,7 @@ files:
|
|
156
158
|
- spec/transformer_marshal_md5_spec.rb
|
157
159
|
- spec/transformer_marshal_md5_spread_spec.rb
|
158
160
|
- spec/transformer_msgpack_spec.rb
|
161
|
+
- spec/transformer_ox_spec.rb
|
159
162
|
- spec/transformer_yaml_spec.rb
|
160
163
|
homepage: http://github.com/minad/juno
|
161
164
|
licenses: []
|
@@ -204,7 +207,8 @@ test_files:
|
|
204
207
|
- spec/adapter_sdbm_spec.rb
|
205
208
|
- spec/adapter_sequel_spec.rb
|
206
209
|
- spec/adapter_sqlite_spec.rb
|
207
|
-
- spec/
|
210
|
+
- spec/adapter_tokyocabinet_bdb_spec.rb
|
211
|
+
- spec/adapter_tokyocabinet_hdb_spec.rb
|
208
212
|
- spec/adapter_yaml_spec.rb
|
209
213
|
- spec/cache_file_memory_spec.rb
|
210
214
|
- spec/cache_memory_null_spec.rb
|
@@ -213,10 +217,10 @@ test_files:
|
|
213
217
|
- spec/generate.rb
|
214
218
|
- spec/helper.rb
|
215
219
|
- spec/junospecs.rb
|
220
|
+
- spec/lock_spec.rb
|
216
221
|
- spec/null_adapter_spec.rb
|
217
222
|
- spec/proxy_expires_memory_spec.rb
|
218
223
|
- spec/proxy_redis_spec.rb
|
219
|
-
- spec/simpl_memory_with_expires_spec.rb
|
220
224
|
- spec/simple_activerecord_spec.rb
|
221
225
|
- spec/simple_activerecord_with_expires_spec.rb
|
222
226
|
- spec/simple_cassandra_spec.rb
|
@@ -272,4 +276,5 @@ test_files:
|
|
272
276
|
- spec/transformer_marshal_md5_spec.rb
|
273
277
|
- spec/transformer_marshal_md5_spread_spec.rb
|
274
278
|
- spec/transformer_msgpack_spec.rb
|
279
|
+
- spec/transformer_ox_spec.rb
|
275
280
|
- spec/transformer_yaml_spec.rb
|
@@ -1,27 +0,0 @@
|
|
1
|
-
# Generated file
|
2
|
-
require 'helper'
|
3
|
-
|
4
|
-
begin
|
5
|
-
Juno::Adapters::TokyoCabinet.new(:file => File.join(make_tempdir, "adapter_tokyocabinet")).close
|
6
|
-
|
7
|
-
describe "adapter_tokyocabinet" do
|
8
|
-
before do
|
9
|
-
@store = Juno::Adapters::TokyoCabinet.new(:file => File.join(make_tempdir, "adapter_tokyocabinet"))
|
10
|
-
@store.clear
|
11
|
-
end
|
12
|
-
|
13
|
-
after do
|
14
|
-
@store.close.should == nil if @store
|
15
|
-
end
|
16
|
-
|
17
|
-
it_should_behave_like 'null_stringkey_stringvalue'
|
18
|
-
it_should_behave_like 'store_stringkey_stringvalue'
|
19
|
-
it_should_behave_like 'returndifferent_stringkey_stringvalue'
|
20
|
-
|
21
|
-
end
|
22
|
-
rescue LoadError => ex
|
23
|
-
puts "Test adapter_tokyocabinet not executed: #{ex.message}"
|
24
|
-
rescue Exception => ex
|
25
|
-
puts "Test adapter_tokyocabinet not executed: #{ex.message}"
|
26
|
-
#puts "#{ex.backtrace.join("\n")}"
|
27
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
# Generated file
|
2
|
-
require 'helper'
|
3
|
-
|
4
|
-
begin
|
5
|
-
Juno.new(:Memory, :expires => true).close
|
6
|
-
|
7
|
-
describe "simpl_memory_with_expires" do
|
8
|
-
before do
|
9
|
-
@store = Juno.new(:Memory, :expires => true)
|
10
|
-
@store.clear
|
11
|
-
end
|
12
|
-
|
13
|
-
after do
|
14
|
-
@store.close.should == nil if @store
|
15
|
-
end
|
16
|
-
|
17
|
-
it_should_behave_like 'null_objectkey_objectvalue'
|
18
|
-
it_should_behave_like 'null_objectkey_stringvalue'
|
19
|
-
it_should_behave_like 'null_objectkey_hashvalue'
|
20
|
-
it_should_behave_like 'null_stringkey_objectvalue'
|
21
|
-
it_should_behave_like 'null_stringkey_stringvalue'
|
22
|
-
it_should_behave_like 'null_stringkey_hashvalue'
|
23
|
-
it_should_behave_like 'null_hashkey_objectvalue'
|
24
|
-
it_should_behave_like 'null_hashkey_stringvalue'
|
25
|
-
it_should_behave_like 'null_hashkey_hashvalue'
|
26
|
-
it_should_behave_like 'store_objectkey_objectvalue'
|
27
|
-
it_should_behave_like 'store_objectkey_stringvalue'
|
28
|
-
it_should_behave_like 'store_objectkey_hashvalue'
|
29
|
-
it_should_behave_like 'store_stringkey_objectvalue'
|
30
|
-
it_should_behave_like 'store_stringkey_stringvalue'
|
31
|
-
it_should_behave_like 'store_stringkey_hashvalue'
|
32
|
-
it_should_behave_like 'store_hashkey_objectvalue'
|
33
|
-
it_should_behave_like 'store_hashkey_stringvalue'
|
34
|
-
it_should_behave_like 'store_hashkey_hashvalue'
|
35
|
-
it_should_behave_like 'returndifferent_objectkey_objectvalue'
|
36
|
-
it_should_behave_like 'returndifferent_objectkey_stringvalue'
|
37
|
-
it_should_behave_like 'returndifferent_objectkey_hashvalue'
|
38
|
-
it_should_behave_like 'returndifferent_stringkey_objectvalue'
|
39
|
-
it_should_behave_like 'returndifferent_stringkey_stringvalue'
|
40
|
-
it_should_behave_like 'returndifferent_stringkey_hashvalue'
|
41
|
-
it_should_behave_like 'returndifferent_hashkey_objectvalue'
|
42
|
-
it_should_behave_like 'returndifferent_hashkey_stringvalue'
|
43
|
-
it_should_behave_like 'returndifferent_hashkey_hashvalue'
|
44
|
-
it_should_behave_like 'marshallable_key'
|
45
|
-
it_should_behave_like 'expires_stringkey_stringvalue'
|
46
|
-
|
47
|
-
end
|
48
|
-
rescue LoadError => ex
|
49
|
-
puts "Test simpl_memory_with_expires not executed: #{ex.message}"
|
50
|
-
rescue Exception => ex
|
51
|
-
puts "Test simpl_memory_with_expires not executed: #{ex.message}"
|
52
|
-
#puts "#{ex.backtrace.join("\n")}"
|
53
|
-
end
|