moneta 0.7.19 → 0.7.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +0 -1
  3. data/CHANGES +11 -0
  4. data/Gemfile +9 -0
  5. data/README.md +15 -2
  6. data/lib/moneta.rb +8 -9
  7. data/lib/moneta/adapters/cassandra.rb +11 -11
  8. data/lib/moneta/adapters/lmdb.rb +93 -0
  9. data/lib/moneta/adapters/lruhash.rb +16 -10
  10. data/lib/moneta/adapters/mongo.rb +2 -3
  11. data/lib/moneta/adapters/sequel.rb +12 -5
  12. data/lib/moneta/cache.rb +1 -2
  13. data/lib/moneta/proxy.rb +1 -0
  14. data/lib/moneta/synchronize.rb +2 -3
  15. data/lib/moneta/transformer/config.rb +5 -3
  16. data/lib/moneta/utils.rb +8 -0
  17. data/lib/moneta/version.rb +1 -1
  18. data/script/benchmarks +1 -0
  19. data/script/generate-specs +139 -92
  20. data/script/travis-logs +2 -1
  21. data/spec/helper.rb +2 -2
  22. data/spec/moneta/adapter_activerecord_exisiting_connection_spec.rb +5 -0
  23. data/spec/moneta/adapter_activerecord_spec.rb +5 -0
  24. data/spec/moneta/adapter_cassandra_spec.rb +5 -0
  25. data/spec/moneta/adapter_cassandra_with_default_expires_spec.rb +5 -0
  26. data/spec/moneta/adapter_client_spec.rb +5 -0
  27. data/spec/moneta/adapter_cookie_spec.rb +4 -0
  28. data/spec/moneta/adapter_couch_spec.rb +12 -11
  29. data/spec/moneta/adapter_datamapper_spec.rb +5 -0
  30. data/spec/moneta/adapter_daybreak_spec.rb +5 -0
  31. data/spec/moneta/adapter_dbm_spec.rb +5 -0
  32. data/spec/moneta/adapter_file_spec.rb +5 -0
  33. data/spec/moneta/adapter_fog_spec.rb +5 -0
  34. data/spec/moneta/adapter_gdbm_spec.rb +5 -0
  35. data/spec/moneta/adapter_hbase_spec.rb +5 -0
  36. data/spec/moneta/adapter_kyotocabinet_spec.rb +5 -0
  37. data/spec/moneta/adapter_leveldb_spec.rb +5 -0
  38. data/spec/moneta/adapter_lmdb_spec.rb +32 -0
  39. data/spec/moneta/adapter_lmdb_with_db_spec.rb +32 -0
  40. data/spec/moneta/adapter_localmemcache_spec.rb +5 -0
  41. data/spec/moneta/adapter_lruhash_spec.rb +4 -0
  42. data/spec/moneta/adapter_memcached_dalli_spec.rb +5 -0
  43. data/spec/moneta/adapter_memcached_dalli_with_default_expires_spec.rb +5 -0
  44. data/spec/moneta/adapter_memcached_native_spec.rb +5 -0
  45. data/spec/moneta/adapter_memcached_native_with_default_expires_spec.rb +5 -0
  46. data/spec/moneta/adapter_memcached_spec.rb +5 -0
  47. data/spec/moneta/adapter_memcached_with_default_expires_spec.rb +5 -0
  48. data/spec/moneta/adapter_memory_spec.rb +42 -0
  49. data/spec/moneta/adapter_mongo_spec.rb +12 -0
  50. data/spec/moneta/adapter_mongo_with_default_expires_spec.rb +12 -0
  51. data/spec/moneta/adapter_pstore_spec.rb +57 -0
  52. data/spec/moneta/adapter_redis_spec.rb +5 -0
  53. data/spec/moneta/adapter_redis_with_default_expires_spec.rb +5 -0
  54. data/spec/moneta/adapter_restclient_spec.rb +5 -0
  55. data/spec/moneta/adapter_riak_spec.rb +5 -0
  56. data/spec/moneta/adapter_sdbm_spec.rb +5 -0
  57. data/spec/moneta/adapter_sequel_spec.rb +5 -0
  58. data/spec/moneta/adapter_sqlite_spec.rb +5 -0
  59. data/spec/moneta/adapter_tdb_spec.rb +5 -0
  60. data/spec/moneta/adapter_tokyocabinet_bdb_spec.rb +5 -0
  61. data/spec/moneta/adapter_tokyocabinet_hdb_spec.rb +5 -0
  62. data/spec/moneta/adapter_tokyotyrant_spec.rb +5 -0
  63. data/spec/moneta/adapter_yaml_spec.rb +1 -0
  64. data/spec/moneta/cache_file_memory_spec.rb +5 -0
  65. data/spec/moneta/cache_memory_null_spec.rb +4 -0
  66. data/spec/moneta/expires_file_spec.rb +5 -0
  67. data/spec/moneta/expires_memory_spec.rb +42 -0
  68. data/spec/moneta/expires_memory_with_default_expires_spec.rb +42 -0
  69. data/spec/moneta/lock_spec.rb +42 -0
  70. data/spec/moneta/mutex_spec.rb +1 -0
  71. data/spec/moneta/null_adapter_spec.rb +16 -0
  72. data/spec/moneta/optionmerger_spec.rb +1 -0
  73. data/spec/moneta/pool_spec.rb +5 -0
  74. data/spec/moneta/proxy_expires_memory_spec.rb +42 -0
  75. data/spec/moneta/proxy_redis_spec.rb +5 -0
  76. data/spec/moneta/semaphore_spec.rb +1 -0
  77. data/spec/moneta/shared_tcp_spec.rb +5 -0
  78. data/spec/moneta/shared_unix_spec.rb +5 -0
  79. data/spec/moneta/stack_file_memory_spec.rb +5 -0
  80. data/spec/moneta/stack_memory_file_spec.rb +5 -0
  81. data/spec/moneta/{simple_activerecord_spec.rb → standard_activerecord_spec.rb} +59 -2
  82. data/spec/moneta/{simple_activerecord_with_expires_spec.rb → standard_activerecord_with_expires_spec.rb} +59 -2
  83. data/spec/moneta/{simple_cassandra_spec.rb → standard_cassandra_spec.rb} +59 -2
  84. data/spec/moneta/{simple_client_tcp_spec.rb → standard_client_tcp_spec.rb} +59 -2
  85. data/spec/moneta/standard_client_unix_spec.rb +254 -0
  86. data/spec/moneta/{simple_couch_spec.rb → standard_couch_spec.rb} +59 -2
  87. data/spec/moneta/{simple_couch_with_expires_spec.rb → standard_couch_with_expires_spec.rb} +59 -2
  88. data/spec/moneta/{simple_datamapper_spec.rb → standard_datamapper_spec.rb} +59 -2
  89. data/spec/moneta/{simple_datamapper_with_expires_spec.rb → standard_datamapper_with_expires_spec.rb} +59 -2
  90. data/spec/moneta/{simple_datamapper_with_repository_spec.rb → standard_datamapper_with_repository_spec.rb} +59 -2
  91. data/spec/moneta/{simple_daybreak_spec.rb → standard_daybreak_spec.rb} +59 -2
  92. data/spec/moneta/{simple_daybreak_with_expires_spec.rb → standard_daybreak_with_expires_spec.rb} +59 -2
  93. data/spec/moneta/{simple_dbm_spec.rb → standard_dbm_spec.rb} +59 -2
  94. data/spec/moneta/{simple_dbm_with_expires_spec.rb → standard_dbm_with_expires_spec.rb} +59 -2
  95. data/spec/moneta/{simple_file_spec.rb → standard_file_spec.rb} +59 -2
  96. data/spec/moneta/{simple_file_with_expires_spec.rb → standard_file_with_expires_spec.rb} +59 -2
  97. data/spec/moneta/{simple_fog_spec.rb → standard_fog_spec.rb} +59 -2
  98. data/spec/moneta/{simple_fog_with_expires_spec.rb → standard_fog_with_expires_spec.rb} +60 -3
  99. data/spec/moneta/{simple_gdbm_spec.rb → standard_gdbm_spec.rb} +59 -2
  100. data/spec/moneta/{simple_gdbm_with_expires_spec.rb → standard_gdbm_with_expires_spec.rb} +59 -2
  101. data/spec/moneta/{simple_hashfile_spec.rb → standard_hashfile_spec.rb} +59 -2
  102. data/spec/moneta/{simple_hashfile_with_expires_spec.rb → standard_hashfile_with_expires_spec.rb} +59 -2
  103. data/spec/moneta/{simple_hbase_spec.rb → standard_hbase_spec.rb} +59 -2
  104. data/spec/moneta/{simple_hbase_with_expires_spec.rb → standard_hbase_with_expires_spec.rb} +59 -2
  105. data/spec/moneta/{simple_kyotocabinet_spec.rb → standard_kyotocabinet_spec.rb} +59 -2
  106. data/spec/moneta/{simple_kyotocabinet_with_expires_spec.rb → standard_kyotocabinet_with_expires_spec.rb} +59 -2
  107. data/spec/moneta/{simple_leveldb_spec.rb → standard_leveldb_spec.rb} +59 -2
  108. data/spec/moneta/{simple_leveldb_with_expires_spec.rb → standard_leveldb_with_expires_spec.rb} +59 -2
  109. data/spec/moneta/{simple_client_unix_spec.rb → standard_lmdb_spec.rb} +59 -5
  110. data/spec/moneta/standard_lmdb_with_expires_spec.rb +253 -0
  111. data/spec/moneta/{simple_localmemcache_spec.rb → standard_localmemcache_spec.rb} +59 -2
  112. data/spec/moneta/{simple_localmemcache_with_expires_spec.rb → standard_localmemcache_with_expires_spec.rb} +59 -2
  113. data/spec/moneta/{simple_lruhash_spec.rb → standard_lruhash_spec.rb} +44 -2
  114. data/spec/moneta/{simple_lruhash_with_expires_spec.rb → standard_lruhash_with_expires_spec.rb} +44 -2
  115. data/spec/moneta/{simple_memcached_dalli_spec.rb → standard_memcached_dalli_spec.rb} +59 -2
  116. data/spec/moneta/{simple_memcached_native_spec.rb → standard_memcached_native_spec.rb} +59 -2
  117. data/spec/moneta/{simple_memcached_spec.rb → standard_memcached_spec.rb} +59 -2
  118. data/spec/moneta/{simple_memory_spec.rb → standard_memory_spec.rb} +44 -2
  119. data/spec/moneta/{simple_memory_with_compress_spec.rb → standard_memory_with_compress_spec.rb} +44 -2
  120. data/spec/moneta/{simple_memory_with_expires_spec.rb → standard_memory_with_expires_spec.rb} +44 -2
  121. data/spec/moneta/{simple_memory_with_json_key_serializer_spec.rb → standard_memory_with_json_key_serializer_spec.rb} +12 -2
  122. data/spec/moneta/{simple_memory_with_json_serializer_spec.rb → standard_memory_with_json_serializer_spec.rb} +4 -3
  123. data/spec/moneta/{simple_memory_with_json_value_serializer_spec.rb → standard_memory_with_json_value_serializer_spec.rb} +12 -3
  124. data/spec/moneta/{simple_memory_with_prefix_spec.rb → standard_memory_with_prefix_spec.rb} +44 -2
  125. data/spec/moneta/{simple_memory_with_snappy_compress_spec.rb → standard_memory_with_snappy_compress_spec.rb} +44 -2
  126. data/spec/moneta/{simple_mongo_spec.rb → standard_mongo_spec.rb} +59 -2
  127. data/spec/moneta/{simple_null_spec.rb → standard_null_spec.rb} +29 -2
  128. data/spec/moneta/{simple_pstore_spec.rb → standard_pstore_spec.rb} +59 -2
  129. data/spec/moneta/{simple_pstore_with_expires_spec.rb → standard_pstore_with_expires_spec.rb} +59 -2
  130. data/spec/moneta/{simple_redis_spec.rb → standard_redis_spec.rb} +59 -2
  131. data/spec/moneta/{simple_restclient_spec.rb → standard_restclient_spec.rb} +59 -2
  132. data/spec/moneta/{simple_riak_spec.rb → standard_riak_spec.rb} +59 -2
  133. data/spec/moneta/{simple_riak_with_expires_spec.rb → standard_riak_with_expires_spec.rb} +59 -2
  134. data/spec/moneta/{simple_sdbm_spec.rb → standard_sdbm_spec.rb} +59 -2
  135. data/spec/moneta/{simple_sdbm_with_expires_spec.rb → standard_sdbm_with_expires_spec.rb} +59 -2
  136. data/spec/moneta/{simple_sequel_spec.rb → standard_sequel_spec.rb} +60 -3
  137. data/spec/moneta/{simple_sequel_with_expires_spec.rb → standard_sequel_with_expires_spec.rb} +60 -3
  138. data/spec/moneta/{simple_sqlite_spec.rb → standard_sqlite_spec.rb} +59 -2
  139. data/spec/moneta/{simple_sqlite_with_expires_spec.rb → standard_sqlite_with_expires_spec.rb} +59 -2
  140. data/spec/moneta/{simple_tdb_spec.rb → standard_tdb_spec.rb} +59 -2
  141. data/spec/moneta/{simple_tdb_with_expires_spec.rb → standard_tdb_with_expires_spec.rb} +59 -2
  142. data/spec/moneta/{simple_tokyocabinet_spec.rb → standard_tokyocabinet_spec.rb} +59 -2
  143. data/spec/moneta/{simple_tokyocabinet_with_expires_spec.rb → standard_tokyocabinet_with_expires_spec.rb} +59 -2
  144. data/spec/moneta/{simple_tokyotyrant_spec.rb → standard_tokyotyrant_spec.rb} +59 -2
  145. data/spec/moneta/{simple_tokyotyrant_with_expires_spec.rb → standard_tokyotyrant_with_expires_spec.rb} +59 -2
  146. data/spec/moneta/{simple_yaml_spec.rb → standard_yaml_spec.rb} +59 -2
  147. data/spec/moneta/{simple_yaml_with_expires_spec.rb → standard_yaml_with_expires_spec.rb} +59 -2
  148. data/spec/moneta/transformer_bencode_spec.rb +1 -0
  149. data/spec/moneta/transformer_bert_spec.rb +1 -0
  150. data/spec/moneta/transformer_bson_spec.rb +1 -0
  151. data/spec/moneta/transformer_bzip2_spec.rb +4 -0
  152. data/spec/moneta/transformer_json_spec.rb +2 -1
  153. data/spec/moneta/transformer_key_inspect_spec.rb +10 -0
  154. data/spec/moneta/transformer_key_marshal_spec.rb +42 -0
  155. data/spec/moneta/transformer_key_to_s_spec.rb +10 -0
  156. data/spec/moneta/transformer_key_yaml_spec.rb +42 -0
  157. data/spec/moneta/transformer_lz4_spec.rb +4 -0
  158. data/spec/moneta/transformer_lzma_spec.rb +4 -0
  159. data/spec/moneta/transformer_lzo_spec.rb +4 -0
  160. data/spec/moneta/transformer_marshal_base64_spec.rb +42 -0
  161. data/spec/moneta/transformer_marshal_city128_spec.rb +42 -0
  162. data/spec/moneta/transformer_marshal_city32_spec.rb +42 -0
  163. data/spec/moneta/transformer_marshal_city64_spec.rb +42 -0
  164. data/spec/moneta/transformer_marshal_escape_spec.rb +42 -0
  165. data/spec/moneta/transformer_marshal_hex_spec.rb +194 -0
  166. data/spec/moneta/transformer_marshal_hmac_spec.rb +42 -0
  167. data/spec/moneta/transformer_marshal_md5_spec.rb +42 -0
  168. data/spec/moneta/transformer_marshal_md5_spread_spec.rb +42 -0
  169. data/spec/moneta/transformer_marshal_prefix_spec.rb +42 -0
  170. data/spec/moneta/transformer_marshal_qp_spec.rb +42 -0
  171. data/spec/moneta/transformer_marshal_rmd160_spec.rb +42 -0
  172. data/spec/moneta/transformer_marshal_sha1_spec.rb +42 -0
  173. data/spec/moneta/transformer_marshal_sha256_spec.rb +42 -0
  174. data/spec/moneta/transformer_marshal_sha384_spec.rb +42 -0
  175. data/spec/moneta/transformer_marshal_sha512_spec.rb +42 -0
  176. data/spec/moneta/transformer_marshal_spec.rb +42 -0
  177. data/spec/moneta/transformer_marshal_truncate_spec.rb +42 -0
  178. data/spec/moneta/transformer_marshal_uuencode_spec.rb +42 -0
  179. data/spec/moneta/transformer_msgpack_spec.rb +1 -0
  180. data/spec/moneta/transformer_ox_spec.rb +42 -0
  181. data/spec/moneta/transformer_php_spec.rb +55 -0
  182. data/spec/moneta/transformer_quicklz_spec.rb +4 -0
  183. data/spec/moneta/transformer_snappy_spec.rb +4 -0
  184. data/spec/moneta/transformer_tnet_spec.rb +1 -0
  185. data/spec/moneta/transformer_value_marshal_spec.rb +42 -0
  186. data/spec/moneta/transformer_value_yaml_spec.rb +42 -0
  187. data/spec/moneta/transformer_yaml_spec.rb +42 -0
  188. data/spec/moneta/transformer_zlib_spec.rb +4 -0
  189. data/spec/moneta/weak_create_spec.rb +5 -0
  190. data/spec/moneta/weak_increment_spec.rb +5 -0
  191. data/spec/monetaspecs.rb +26531 -16522
  192. metadata +145 -133
  193. data/script/kill-travis +0 -16
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -24,6 +25,7 @@ describe_moneta "lock" do
24
25
  it_should_behave_like 'not_persist'
25
26
  it_should_behave_like 'null_objectkey_objectvalue'
26
27
  it_should_behave_like 'null_objectkey_stringvalue'
28
+ it_should_behave_like 'null_objectkey_binaryvalue'
27
29
  it_should_behave_like 'null_objectkey_hashvalue'
28
30
  it_should_behave_like 'null_objectkey_booleanvalue'
29
31
  it_should_behave_like 'null_objectkey_nilvalue'
@@ -31,13 +33,23 @@ describe_moneta "lock" do
31
33
  it_should_behave_like 'null_objectkey_numbervalue'
32
34
  it_should_behave_like 'null_stringkey_objectvalue'
33
35
  it_should_behave_like 'null_stringkey_stringvalue'
36
+ it_should_behave_like 'null_stringkey_binaryvalue'
34
37
  it_should_behave_like 'null_stringkey_hashvalue'
35
38
  it_should_behave_like 'null_stringkey_booleanvalue'
36
39
  it_should_behave_like 'null_stringkey_nilvalue'
37
40
  it_should_behave_like 'null_stringkey_integervalue'
38
41
  it_should_behave_like 'null_stringkey_numbervalue'
42
+ it_should_behave_like 'null_binarykey_objectvalue'
43
+ it_should_behave_like 'null_binarykey_stringvalue'
44
+ it_should_behave_like 'null_binarykey_binaryvalue'
45
+ it_should_behave_like 'null_binarykey_hashvalue'
46
+ it_should_behave_like 'null_binarykey_booleanvalue'
47
+ it_should_behave_like 'null_binarykey_nilvalue'
48
+ it_should_behave_like 'null_binarykey_integervalue'
49
+ it_should_behave_like 'null_binarykey_numbervalue'
39
50
  it_should_behave_like 'null_hashkey_objectvalue'
40
51
  it_should_behave_like 'null_hashkey_stringvalue'
52
+ it_should_behave_like 'null_hashkey_binaryvalue'
41
53
  it_should_behave_like 'null_hashkey_hashvalue'
42
54
  it_should_behave_like 'null_hashkey_booleanvalue'
43
55
  it_should_behave_like 'null_hashkey_nilvalue'
@@ -45,6 +57,7 @@ describe_moneta "lock" do
45
57
  it_should_behave_like 'null_hashkey_numbervalue'
46
58
  it_should_behave_like 'null_booleankey_objectvalue'
47
59
  it_should_behave_like 'null_booleankey_stringvalue'
60
+ it_should_behave_like 'null_booleankey_binaryvalue'
48
61
  it_should_behave_like 'null_booleankey_hashvalue'
49
62
  it_should_behave_like 'null_booleankey_booleanvalue'
50
63
  it_should_behave_like 'null_booleankey_nilvalue'
@@ -52,6 +65,7 @@ describe_moneta "lock" do
52
65
  it_should_behave_like 'null_booleankey_numbervalue'
53
66
  it_should_behave_like 'null_nilkey_objectvalue'
54
67
  it_should_behave_like 'null_nilkey_stringvalue'
68
+ it_should_behave_like 'null_nilkey_binaryvalue'
55
69
  it_should_behave_like 'null_nilkey_hashvalue'
56
70
  it_should_behave_like 'null_nilkey_booleanvalue'
57
71
  it_should_behave_like 'null_nilkey_nilvalue'
@@ -59,6 +73,7 @@ describe_moneta "lock" do
59
73
  it_should_behave_like 'null_nilkey_numbervalue'
60
74
  it_should_behave_like 'null_integerkey_objectvalue'
61
75
  it_should_behave_like 'null_integerkey_stringvalue'
76
+ it_should_behave_like 'null_integerkey_binaryvalue'
62
77
  it_should_behave_like 'null_integerkey_hashvalue'
63
78
  it_should_behave_like 'null_integerkey_booleanvalue'
64
79
  it_should_behave_like 'null_integerkey_nilvalue'
@@ -66,6 +81,7 @@ describe_moneta "lock" do
66
81
  it_should_behave_like 'null_integerkey_numbervalue'
67
82
  it_should_behave_like 'null_numberkey_objectvalue'
68
83
  it_should_behave_like 'null_numberkey_stringvalue'
84
+ it_should_behave_like 'null_numberkey_binaryvalue'
69
85
  it_should_behave_like 'null_numberkey_hashvalue'
70
86
  it_should_behave_like 'null_numberkey_booleanvalue'
71
87
  it_should_behave_like 'null_numberkey_nilvalue'
@@ -73,27 +89,39 @@ describe_moneta "lock" do
73
89
  it_should_behave_like 'null_numberkey_numbervalue'
74
90
  it_should_behave_like 'returnsame_objectkey_objectvalue'
75
91
  it_should_behave_like 'returnsame_objectkey_stringvalue'
92
+ it_should_behave_like 'returnsame_objectkey_binaryvalue'
76
93
  it_should_behave_like 'returnsame_objectkey_hashvalue'
77
94
  it_should_behave_like 'returnsame_stringkey_objectvalue'
78
95
  it_should_behave_like 'returnsame_stringkey_stringvalue'
96
+ it_should_behave_like 'returnsame_stringkey_binaryvalue'
79
97
  it_should_behave_like 'returnsame_stringkey_hashvalue'
98
+ it_should_behave_like 'returnsame_binarykey_objectvalue'
99
+ it_should_behave_like 'returnsame_binarykey_stringvalue'
100
+ it_should_behave_like 'returnsame_binarykey_binaryvalue'
101
+ it_should_behave_like 'returnsame_binarykey_hashvalue'
80
102
  it_should_behave_like 'returnsame_hashkey_objectvalue'
81
103
  it_should_behave_like 'returnsame_hashkey_stringvalue'
104
+ it_should_behave_like 'returnsame_hashkey_binaryvalue'
82
105
  it_should_behave_like 'returnsame_hashkey_hashvalue'
83
106
  it_should_behave_like 'returnsame_booleankey_objectvalue'
84
107
  it_should_behave_like 'returnsame_booleankey_stringvalue'
108
+ it_should_behave_like 'returnsame_booleankey_binaryvalue'
85
109
  it_should_behave_like 'returnsame_booleankey_hashvalue'
86
110
  it_should_behave_like 'returnsame_nilkey_objectvalue'
87
111
  it_should_behave_like 'returnsame_nilkey_stringvalue'
112
+ it_should_behave_like 'returnsame_nilkey_binaryvalue'
88
113
  it_should_behave_like 'returnsame_nilkey_hashvalue'
89
114
  it_should_behave_like 'returnsame_integerkey_objectvalue'
90
115
  it_should_behave_like 'returnsame_integerkey_stringvalue'
116
+ it_should_behave_like 'returnsame_integerkey_binaryvalue'
91
117
  it_should_behave_like 'returnsame_integerkey_hashvalue'
92
118
  it_should_behave_like 'returnsame_numberkey_objectvalue'
93
119
  it_should_behave_like 'returnsame_numberkey_stringvalue'
120
+ it_should_behave_like 'returnsame_numberkey_binaryvalue'
94
121
  it_should_behave_like 'returnsame_numberkey_hashvalue'
95
122
  it_should_behave_like 'store_objectkey_objectvalue'
96
123
  it_should_behave_like 'store_objectkey_stringvalue'
124
+ it_should_behave_like 'store_objectkey_binaryvalue'
97
125
  it_should_behave_like 'store_objectkey_hashvalue'
98
126
  it_should_behave_like 'store_objectkey_booleanvalue'
99
127
  it_should_behave_like 'store_objectkey_nilvalue'
@@ -101,13 +129,23 @@ describe_moneta "lock" do
101
129
  it_should_behave_like 'store_objectkey_numbervalue'
102
130
  it_should_behave_like 'store_stringkey_objectvalue'
103
131
  it_should_behave_like 'store_stringkey_stringvalue'
132
+ it_should_behave_like 'store_stringkey_binaryvalue'
104
133
  it_should_behave_like 'store_stringkey_hashvalue'
105
134
  it_should_behave_like 'store_stringkey_booleanvalue'
106
135
  it_should_behave_like 'store_stringkey_nilvalue'
107
136
  it_should_behave_like 'store_stringkey_integervalue'
108
137
  it_should_behave_like 'store_stringkey_numbervalue'
138
+ it_should_behave_like 'store_binarykey_objectvalue'
139
+ it_should_behave_like 'store_binarykey_stringvalue'
140
+ it_should_behave_like 'store_binarykey_binaryvalue'
141
+ it_should_behave_like 'store_binarykey_hashvalue'
142
+ it_should_behave_like 'store_binarykey_booleanvalue'
143
+ it_should_behave_like 'store_binarykey_nilvalue'
144
+ it_should_behave_like 'store_binarykey_integervalue'
145
+ it_should_behave_like 'store_binarykey_numbervalue'
109
146
  it_should_behave_like 'store_hashkey_objectvalue'
110
147
  it_should_behave_like 'store_hashkey_stringvalue'
148
+ it_should_behave_like 'store_hashkey_binaryvalue'
111
149
  it_should_behave_like 'store_hashkey_hashvalue'
112
150
  it_should_behave_like 'store_hashkey_booleanvalue'
113
151
  it_should_behave_like 'store_hashkey_nilvalue'
@@ -115,6 +153,7 @@ describe_moneta "lock" do
115
153
  it_should_behave_like 'store_hashkey_numbervalue'
116
154
  it_should_behave_like 'store_booleankey_objectvalue'
117
155
  it_should_behave_like 'store_booleankey_stringvalue'
156
+ it_should_behave_like 'store_booleankey_binaryvalue'
118
157
  it_should_behave_like 'store_booleankey_hashvalue'
119
158
  it_should_behave_like 'store_booleankey_booleanvalue'
120
159
  it_should_behave_like 'store_booleankey_nilvalue'
@@ -122,6 +161,7 @@ describe_moneta "lock" do
122
161
  it_should_behave_like 'store_booleankey_numbervalue'
123
162
  it_should_behave_like 'store_nilkey_objectvalue'
124
163
  it_should_behave_like 'store_nilkey_stringvalue'
164
+ it_should_behave_like 'store_nilkey_binaryvalue'
125
165
  it_should_behave_like 'store_nilkey_hashvalue'
126
166
  it_should_behave_like 'store_nilkey_booleanvalue'
127
167
  it_should_behave_like 'store_nilkey_nilvalue'
@@ -129,6 +169,7 @@ describe_moneta "lock" do
129
169
  it_should_behave_like 'store_nilkey_numbervalue'
130
170
  it_should_behave_like 'store_integerkey_objectvalue'
131
171
  it_should_behave_like 'store_integerkey_stringvalue'
172
+ it_should_behave_like 'store_integerkey_binaryvalue'
132
173
  it_should_behave_like 'store_integerkey_hashvalue'
133
174
  it_should_behave_like 'store_integerkey_booleanvalue'
134
175
  it_should_behave_like 'store_integerkey_nilvalue'
@@ -136,6 +177,7 @@ describe_moneta "lock" do
136
177
  it_should_behave_like 'store_integerkey_numbervalue'
137
178
  it_should_behave_like 'store_numberkey_objectvalue'
138
179
  it_should_behave_like 'store_numberkey_stringvalue'
180
+ it_should_behave_like 'store_numberkey_binaryvalue'
139
181
  it_should_behave_like 'store_numberkey_hashvalue'
140
182
  it_should_behave_like 'store_numberkey_booleanvalue'
141
183
  it_should_behave_like 'store_numberkey_nilvalue'
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -20,6 +21,7 @@ describe_moneta "null_adapter" do
20
21
  it_should_behave_like 'not_persist'
21
22
  it_should_behave_like 'null_objectkey_objectvalue'
22
23
  it_should_behave_like 'null_objectkey_stringvalue'
24
+ it_should_behave_like 'null_objectkey_binaryvalue'
23
25
  it_should_behave_like 'null_objectkey_hashvalue'
24
26
  it_should_behave_like 'null_objectkey_booleanvalue'
25
27
  it_should_behave_like 'null_objectkey_nilvalue'
@@ -27,13 +29,23 @@ describe_moneta "null_adapter" do
27
29
  it_should_behave_like 'null_objectkey_numbervalue'
28
30
  it_should_behave_like 'null_stringkey_objectvalue'
29
31
  it_should_behave_like 'null_stringkey_stringvalue'
32
+ it_should_behave_like 'null_stringkey_binaryvalue'
30
33
  it_should_behave_like 'null_stringkey_hashvalue'
31
34
  it_should_behave_like 'null_stringkey_booleanvalue'
32
35
  it_should_behave_like 'null_stringkey_nilvalue'
33
36
  it_should_behave_like 'null_stringkey_integervalue'
34
37
  it_should_behave_like 'null_stringkey_numbervalue'
38
+ it_should_behave_like 'null_binarykey_objectvalue'
39
+ it_should_behave_like 'null_binarykey_stringvalue'
40
+ it_should_behave_like 'null_binarykey_binaryvalue'
41
+ it_should_behave_like 'null_binarykey_hashvalue'
42
+ it_should_behave_like 'null_binarykey_booleanvalue'
43
+ it_should_behave_like 'null_binarykey_nilvalue'
44
+ it_should_behave_like 'null_binarykey_integervalue'
45
+ it_should_behave_like 'null_binarykey_numbervalue'
35
46
  it_should_behave_like 'null_hashkey_objectvalue'
36
47
  it_should_behave_like 'null_hashkey_stringvalue'
48
+ it_should_behave_like 'null_hashkey_binaryvalue'
37
49
  it_should_behave_like 'null_hashkey_hashvalue'
38
50
  it_should_behave_like 'null_hashkey_booleanvalue'
39
51
  it_should_behave_like 'null_hashkey_nilvalue'
@@ -41,6 +53,7 @@ describe_moneta "null_adapter" do
41
53
  it_should_behave_like 'null_hashkey_numbervalue'
42
54
  it_should_behave_like 'null_booleankey_objectvalue'
43
55
  it_should_behave_like 'null_booleankey_stringvalue'
56
+ it_should_behave_like 'null_booleankey_binaryvalue'
44
57
  it_should_behave_like 'null_booleankey_hashvalue'
45
58
  it_should_behave_like 'null_booleankey_booleanvalue'
46
59
  it_should_behave_like 'null_booleankey_nilvalue'
@@ -48,6 +61,7 @@ describe_moneta "null_adapter" do
48
61
  it_should_behave_like 'null_booleankey_numbervalue'
49
62
  it_should_behave_like 'null_nilkey_objectvalue'
50
63
  it_should_behave_like 'null_nilkey_stringvalue'
64
+ it_should_behave_like 'null_nilkey_binaryvalue'
51
65
  it_should_behave_like 'null_nilkey_hashvalue'
52
66
  it_should_behave_like 'null_nilkey_booleanvalue'
53
67
  it_should_behave_like 'null_nilkey_nilvalue'
@@ -55,6 +69,7 @@ describe_moneta "null_adapter" do
55
69
  it_should_behave_like 'null_nilkey_numbervalue'
56
70
  it_should_behave_like 'null_integerkey_objectvalue'
57
71
  it_should_behave_like 'null_integerkey_stringvalue'
72
+ it_should_behave_like 'null_integerkey_binaryvalue'
58
73
  it_should_behave_like 'null_integerkey_hashvalue'
59
74
  it_should_behave_like 'null_integerkey_booleanvalue'
60
75
  it_should_behave_like 'null_integerkey_nilvalue'
@@ -62,6 +77,7 @@ describe_moneta "null_adapter" do
62
77
  it_should_behave_like 'null_integerkey_numbervalue'
63
78
  it_should_behave_like 'null_numberkey_objectvalue'
64
79
  it_should_behave_like 'null_numberkey_stringvalue'
80
+ it_should_behave_like 'null_numberkey_binaryvalue'
65
81
  it_should_behave_like 'null_numberkey_hashvalue'
66
82
  it_should_behave_like 'null_numberkey_booleanvalue'
67
83
  it_should_behave_like 'null_numberkey_nilvalue'
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -26,8 +27,12 @@ describe_moneta "pool" do
26
27
  it_should_behave_like 'increment'
27
28
  it_should_behave_like 'multiprocess'
28
29
  it_should_behave_like 'null_stringkey_stringvalue'
30
+ it_should_behave_like 'null_pathkey_stringvalue'
29
31
  it_should_behave_like 'persist_stringkey_stringvalue'
32
+ it_should_behave_like 'persist_pathkey_stringvalue'
30
33
  it_should_behave_like 'returndifferent_stringkey_stringvalue'
34
+ it_should_behave_like 'returndifferent_pathkey_stringvalue'
31
35
  it_should_behave_like 'store_stringkey_stringvalue'
36
+ it_should_behave_like 'store_pathkey_stringvalue'
32
37
  it_should_behave_like 'store_large'
33
38
  end
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -28,6 +29,7 @@ describe_moneta "proxy_expires_memory" do
28
29
  it_should_behave_like 'not_persist'
29
30
  it_should_behave_like 'null_objectkey_objectvalue'
30
31
  it_should_behave_like 'null_objectkey_stringvalue'
32
+ it_should_behave_like 'null_objectkey_binaryvalue'
31
33
  it_should_behave_like 'null_objectkey_hashvalue'
32
34
  it_should_behave_like 'null_objectkey_booleanvalue'
33
35
  it_should_behave_like 'null_objectkey_nilvalue'
@@ -35,13 +37,23 @@ describe_moneta "proxy_expires_memory" do
35
37
  it_should_behave_like 'null_objectkey_numbervalue'
36
38
  it_should_behave_like 'null_stringkey_objectvalue'
37
39
  it_should_behave_like 'null_stringkey_stringvalue'
40
+ it_should_behave_like 'null_stringkey_binaryvalue'
38
41
  it_should_behave_like 'null_stringkey_hashvalue'
39
42
  it_should_behave_like 'null_stringkey_booleanvalue'
40
43
  it_should_behave_like 'null_stringkey_nilvalue'
41
44
  it_should_behave_like 'null_stringkey_integervalue'
42
45
  it_should_behave_like 'null_stringkey_numbervalue'
46
+ it_should_behave_like 'null_binarykey_objectvalue'
47
+ it_should_behave_like 'null_binarykey_stringvalue'
48
+ it_should_behave_like 'null_binarykey_binaryvalue'
49
+ it_should_behave_like 'null_binarykey_hashvalue'
50
+ it_should_behave_like 'null_binarykey_booleanvalue'
51
+ it_should_behave_like 'null_binarykey_nilvalue'
52
+ it_should_behave_like 'null_binarykey_integervalue'
53
+ it_should_behave_like 'null_binarykey_numbervalue'
43
54
  it_should_behave_like 'null_hashkey_objectvalue'
44
55
  it_should_behave_like 'null_hashkey_stringvalue'
56
+ it_should_behave_like 'null_hashkey_binaryvalue'
45
57
  it_should_behave_like 'null_hashkey_hashvalue'
46
58
  it_should_behave_like 'null_hashkey_booleanvalue'
47
59
  it_should_behave_like 'null_hashkey_nilvalue'
@@ -49,6 +61,7 @@ describe_moneta "proxy_expires_memory" do
49
61
  it_should_behave_like 'null_hashkey_numbervalue'
50
62
  it_should_behave_like 'null_booleankey_objectvalue'
51
63
  it_should_behave_like 'null_booleankey_stringvalue'
64
+ it_should_behave_like 'null_booleankey_binaryvalue'
52
65
  it_should_behave_like 'null_booleankey_hashvalue'
53
66
  it_should_behave_like 'null_booleankey_booleanvalue'
54
67
  it_should_behave_like 'null_booleankey_nilvalue'
@@ -56,6 +69,7 @@ describe_moneta "proxy_expires_memory" do
56
69
  it_should_behave_like 'null_booleankey_numbervalue'
57
70
  it_should_behave_like 'null_nilkey_objectvalue'
58
71
  it_should_behave_like 'null_nilkey_stringvalue'
72
+ it_should_behave_like 'null_nilkey_binaryvalue'
59
73
  it_should_behave_like 'null_nilkey_hashvalue'
60
74
  it_should_behave_like 'null_nilkey_booleanvalue'
61
75
  it_should_behave_like 'null_nilkey_nilvalue'
@@ -63,6 +77,7 @@ describe_moneta "proxy_expires_memory" do
63
77
  it_should_behave_like 'null_nilkey_numbervalue'
64
78
  it_should_behave_like 'null_integerkey_objectvalue'
65
79
  it_should_behave_like 'null_integerkey_stringvalue'
80
+ it_should_behave_like 'null_integerkey_binaryvalue'
66
81
  it_should_behave_like 'null_integerkey_hashvalue'
67
82
  it_should_behave_like 'null_integerkey_booleanvalue'
68
83
  it_should_behave_like 'null_integerkey_nilvalue'
@@ -70,6 +85,7 @@ describe_moneta "proxy_expires_memory" do
70
85
  it_should_behave_like 'null_integerkey_numbervalue'
71
86
  it_should_behave_like 'null_numberkey_objectvalue'
72
87
  it_should_behave_like 'null_numberkey_stringvalue'
88
+ it_should_behave_like 'null_numberkey_binaryvalue'
73
89
  it_should_behave_like 'null_numberkey_hashvalue'
74
90
  it_should_behave_like 'null_numberkey_booleanvalue'
75
91
  it_should_behave_like 'null_numberkey_nilvalue'
@@ -77,27 +93,39 @@ describe_moneta "proxy_expires_memory" do
77
93
  it_should_behave_like 'null_numberkey_numbervalue'
78
94
  it_should_behave_like 'returnsame_objectkey_objectvalue'
79
95
  it_should_behave_like 'returnsame_objectkey_stringvalue'
96
+ it_should_behave_like 'returnsame_objectkey_binaryvalue'
80
97
  it_should_behave_like 'returnsame_objectkey_hashvalue'
81
98
  it_should_behave_like 'returnsame_stringkey_objectvalue'
82
99
  it_should_behave_like 'returnsame_stringkey_stringvalue'
100
+ it_should_behave_like 'returnsame_stringkey_binaryvalue'
83
101
  it_should_behave_like 'returnsame_stringkey_hashvalue'
102
+ it_should_behave_like 'returnsame_binarykey_objectvalue'
103
+ it_should_behave_like 'returnsame_binarykey_stringvalue'
104
+ it_should_behave_like 'returnsame_binarykey_binaryvalue'
105
+ it_should_behave_like 'returnsame_binarykey_hashvalue'
84
106
  it_should_behave_like 'returnsame_hashkey_objectvalue'
85
107
  it_should_behave_like 'returnsame_hashkey_stringvalue'
108
+ it_should_behave_like 'returnsame_hashkey_binaryvalue'
86
109
  it_should_behave_like 'returnsame_hashkey_hashvalue'
87
110
  it_should_behave_like 'returnsame_booleankey_objectvalue'
88
111
  it_should_behave_like 'returnsame_booleankey_stringvalue'
112
+ it_should_behave_like 'returnsame_booleankey_binaryvalue'
89
113
  it_should_behave_like 'returnsame_booleankey_hashvalue'
90
114
  it_should_behave_like 'returnsame_nilkey_objectvalue'
91
115
  it_should_behave_like 'returnsame_nilkey_stringvalue'
116
+ it_should_behave_like 'returnsame_nilkey_binaryvalue'
92
117
  it_should_behave_like 'returnsame_nilkey_hashvalue'
93
118
  it_should_behave_like 'returnsame_integerkey_objectvalue'
94
119
  it_should_behave_like 'returnsame_integerkey_stringvalue'
120
+ it_should_behave_like 'returnsame_integerkey_binaryvalue'
95
121
  it_should_behave_like 'returnsame_integerkey_hashvalue'
96
122
  it_should_behave_like 'returnsame_numberkey_objectvalue'
97
123
  it_should_behave_like 'returnsame_numberkey_stringvalue'
124
+ it_should_behave_like 'returnsame_numberkey_binaryvalue'
98
125
  it_should_behave_like 'returnsame_numberkey_hashvalue'
99
126
  it_should_behave_like 'store_objectkey_objectvalue'
100
127
  it_should_behave_like 'store_objectkey_stringvalue'
128
+ it_should_behave_like 'store_objectkey_binaryvalue'
101
129
  it_should_behave_like 'store_objectkey_hashvalue'
102
130
  it_should_behave_like 'store_objectkey_booleanvalue'
103
131
  it_should_behave_like 'store_objectkey_nilvalue'
@@ -105,13 +133,23 @@ describe_moneta "proxy_expires_memory" do
105
133
  it_should_behave_like 'store_objectkey_numbervalue'
106
134
  it_should_behave_like 'store_stringkey_objectvalue'
107
135
  it_should_behave_like 'store_stringkey_stringvalue'
136
+ it_should_behave_like 'store_stringkey_binaryvalue'
108
137
  it_should_behave_like 'store_stringkey_hashvalue'
109
138
  it_should_behave_like 'store_stringkey_booleanvalue'
110
139
  it_should_behave_like 'store_stringkey_nilvalue'
111
140
  it_should_behave_like 'store_stringkey_integervalue'
112
141
  it_should_behave_like 'store_stringkey_numbervalue'
142
+ it_should_behave_like 'store_binarykey_objectvalue'
143
+ it_should_behave_like 'store_binarykey_stringvalue'
144
+ it_should_behave_like 'store_binarykey_binaryvalue'
145
+ it_should_behave_like 'store_binarykey_hashvalue'
146
+ it_should_behave_like 'store_binarykey_booleanvalue'
147
+ it_should_behave_like 'store_binarykey_nilvalue'
148
+ it_should_behave_like 'store_binarykey_integervalue'
149
+ it_should_behave_like 'store_binarykey_numbervalue'
113
150
  it_should_behave_like 'store_hashkey_objectvalue'
114
151
  it_should_behave_like 'store_hashkey_stringvalue'
152
+ it_should_behave_like 'store_hashkey_binaryvalue'
115
153
  it_should_behave_like 'store_hashkey_hashvalue'
116
154
  it_should_behave_like 'store_hashkey_booleanvalue'
117
155
  it_should_behave_like 'store_hashkey_nilvalue'
@@ -119,6 +157,7 @@ describe_moneta "proxy_expires_memory" do
119
157
  it_should_behave_like 'store_hashkey_numbervalue'
120
158
  it_should_behave_like 'store_booleankey_objectvalue'
121
159
  it_should_behave_like 'store_booleankey_stringvalue'
160
+ it_should_behave_like 'store_booleankey_binaryvalue'
122
161
  it_should_behave_like 'store_booleankey_hashvalue'
123
162
  it_should_behave_like 'store_booleankey_booleanvalue'
124
163
  it_should_behave_like 'store_booleankey_nilvalue'
@@ -126,6 +165,7 @@ describe_moneta "proxy_expires_memory" do
126
165
  it_should_behave_like 'store_booleankey_numbervalue'
127
166
  it_should_behave_like 'store_nilkey_objectvalue'
128
167
  it_should_behave_like 'store_nilkey_stringvalue'
168
+ it_should_behave_like 'store_nilkey_binaryvalue'
129
169
  it_should_behave_like 'store_nilkey_hashvalue'
130
170
  it_should_behave_like 'store_nilkey_booleanvalue'
131
171
  it_should_behave_like 'store_nilkey_nilvalue'
@@ -133,6 +173,7 @@ describe_moneta "proxy_expires_memory" do
133
173
  it_should_behave_like 'store_nilkey_numbervalue'
134
174
  it_should_behave_like 'store_integerkey_objectvalue'
135
175
  it_should_behave_like 'store_integerkey_stringvalue'
176
+ it_should_behave_like 'store_integerkey_binaryvalue'
136
177
  it_should_behave_like 'store_integerkey_hashvalue'
137
178
  it_should_behave_like 'store_integerkey_booleanvalue'
138
179
  it_should_behave_like 'store_integerkey_nilvalue'
@@ -140,6 +181,7 @@ describe_moneta "proxy_expires_memory" do
140
181
  it_should_behave_like 'store_integerkey_numbervalue'
141
182
  it_should_behave_like 'store_numberkey_objectvalue'
142
183
  it_should_behave_like 'store_numberkey_stringvalue'
184
+ it_should_behave_like 'store_numberkey_binaryvalue'
143
185
  it_should_behave_like 'store_numberkey_hashvalue'
144
186
  it_should_behave_like 'store_numberkey_booleanvalue'
145
187
  it_should_behave_like 'store_numberkey_nilvalue'
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -28,8 +29,12 @@ describe_moneta "proxy_redis" do
28
29
  it_should_behave_like 'increment'
29
30
  it_should_behave_like 'multiprocess'
30
31
  it_should_behave_like 'null_stringkey_stringvalue'
32
+ it_should_behave_like 'null_pathkey_stringvalue'
31
33
  it_should_behave_like 'persist_stringkey_stringvalue'
34
+ it_should_behave_like 'persist_pathkey_stringvalue'
32
35
  it_should_behave_like 'returndifferent_stringkey_stringvalue'
36
+ it_should_behave_like 'returndifferent_pathkey_stringvalue'
33
37
  it_should_behave_like 'store_stringkey_stringvalue'
38
+ it_should_behave_like 'store_pathkey_stringvalue'
34
39
  it_should_behave_like 'store_large'
35
40
  end
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -1,3 +1,4 @@
1
+ # coding: binary
1
2
  # Generated by generate-specs
2
3
  require 'helper'
3
4
 
@@ -26,9 +27,13 @@ describe_moneta "shared_tcp" do
26
27
  it_should_behave_like 'increment'
27
28
  it_should_behave_like 'multiprocess'
28
29
  it_should_behave_like 'null_stringkey_stringvalue'
30
+ it_should_behave_like 'null_pathkey_stringvalue'
29
31
  it_should_behave_like 'persist_stringkey_stringvalue'
32
+ it_should_behave_like 'persist_pathkey_stringvalue'
30
33
  it_should_behave_like 'returndifferent_stringkey_stringvalue'
34
+ it_should_behave_like 'returndifferent_pathkey_stringvalue'
31
35
  it_should_behave_like 'store_stringkey_stringvalue'
36
+ it_should_behave_like 'store_pathkey_stringvalue'
32
37
  it_should_behave_like 'store_large'
33
38
  it 'shares values' do
34
39
  store['shared_key'] = 'shared_value'