couch_rest_adapter 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +28 -0
  4. data/Rakefile +32 -0
  5. data/lib/couch_rest_adapter/attribute_method.rb +37 -0
  6. data/lib/couch_rest_adapter/db_config.rb +29 -0
  7. data/lib/couch_rest_adapter/document_management.rb +21 -0
  8. data/lib/couch_rest_adapter/helpers.rb +11 -0
  9. data/lib/couch_rest_adapter/query_views.rb +29 -0
  10. data/lib/couch_rest_adapter/railtie.rb +9 -0
  11. data/lib/couch_rest_adapter/version.rb +3 -0
  12. data/lib/couch_rest_adapter.rb +68 -0
  13. data/lib/exceptions/couch_rest_adapter.rb +8 -0
  14. data/lib/tasks/couch_rest_adapter_tasks.rake +4 -0
  15. data/test/couch_rest_adapter_test.rb +100 -0
  16. data/test/dummy/README.rdoc +28 -0
  17. data/test/dummy/Rakefile +6 -0
  18. data/test/dummy/app/assets/javascripts/application.js +13 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  20. data/test/dummy/app/controllers/application_controller.rb +5 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/test/dummy/bin/bundle +3 -0
  24. data/test/dummy/bin/rails +4 -0
  25. data/test/dummy/bin/rake +4 -0
  26. data/test/dummy/config/application.rb +27 -0
  27. data/test/dummy/config/boot.rb +5 -0
  28. data/test/dummy/config/database.yml +14 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +29 -0
  31. data/test/dummy/config/environments/production.rb +80 -0
  32. data/test/dummy/config/environments/test.rb +36 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  35. data/test/dummy/config/initializers/inflections.rb +16 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +12 -0
  38. data/test/dummy/config/initializers/session_store.rb +3 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +23 -0
  41. data/test/dummy/config/routes.rb +56 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/lib/couch_rest_adapter/railtie.rb +10 -0
  44. data/test/dummy/log/test.log +1290 -0
  45. data/test/dummy/public/404.html +58 -0
  46. data/test/dummy/public/422.html +58 -0
  47. data/test/dummy/public/500.html +57 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/factories.rb +8 -0
  50. data/test/test_helper.rb +36 -0
  51. metadata +198 -0
@@ -0,0 +1,1290 @@
1
+ --------------------------------------------------------------
2
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
3
+ --------------------------------------------------------------
4
+ ---------------------------------------------------------
5
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
6
+ ---------------------------------------------------------
7
+ -------------------------------------------------------------
8
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
9
+ -------------------------------------------------------------
10
+ --------------------------------------------------------------------------------------------------
11
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
12
+ --------------------------------------------------------------------------------------------------
13
+ ----------------------------------------------------------------------
14
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
15
+ ----------------------------------------------------------------------
16
+ -------------------------------------------------------
17
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
18
+ -------------------------------------------------------
19
+ --------------------------------------------------------------
20
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
21
+ --------------------------------------------------------------
22
+ --------------------------------------------------------------
23
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
24
+ --------------------------------------------------------------
25
+ ---------------------------------------------------------
26
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
27
+ ---------------------------------------------------------
28
+ -------------------------------------------------------------
29
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
30
+ -------------------------------------------------------------
31
+ --------------------------------------------------------------------------------------------------
32
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
33
+ --------------------------------------------------------------------------------------------------
34
+ ----------------------------------------------------------------------
35
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
36
+ ----------------------------------------------------------------------
37
+ -------------------------------------------------------
38
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
39
+ -------------------------------------------------------
40
+ --------------------------------------------------------------
41
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
42
+ --------------------------------------------------------------
43
+ --------------------------------------------------------------
44
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
45
+ --------------------------------------------------------------
46
+ ---------------------------------------------------------
47
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
48
+ ---------------------------------------------------------
49
+ -------------------------------------------------------------
50
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
51
+ -------------------------------------------------------------
52
+ --------------------------------------------------------------------------------------------------
53
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
54
+ --------------------------------------------------------------------------------------------------
55
+ ----------------------------------------------------------------------
56
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
57
+ ----------------------------------------------------------------------
58
+ -------------------------------------------------------
59
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
60
+ -------------------------------------------------------
61
+ --------------------------------------------------------------
62
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
63
+ --------------------------------------------------------------
64
+ --------------------------------------------------------------
65
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
66
+ --------------------------------------------------------------
67
+ ---------------------------------------------------------
68
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
69
+ ---------------------------------------------------------
70
+ -------------------------------------------------------------
71
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
72
+ -------------------------------------------------------------
73
+ --------------------------------------------------------------------------------------------------
74
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
75
+ --------------------------------------------------------------------------------------------------
76
+ ----------------------------------------------------------------------
77
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
78
+ ----------------------------------------------------------------------
79
+ -------------------------------------------------------
80
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
81
+ -------------------------------------------------------
82
+ --------------------------------------------------------------
83
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
84
+ --------------------------------------------------------------
85
+ --------------------------------------------------------------
86
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
87
+ --------------------------------------------------------------
88
+ ---------------------------------------------------------
89
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
90
+ ---------------------------------------------------------
91
+ -------------------------------------------------------------
92
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
93
+ -------------------------------------------------------------
94
+ --------------------------------------------------------------------------------------------------
95
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
96
+ --------------------------------------------------------------------------------------------------
97
+ ----------------------------------------------------------------------
98
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
99
+ ----------------------------------------------------------------------
100
+ -------------------------------------------------------
101
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
102
+ -------------------------------------------------------
103
+ --------------------------------------------------------------
104
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
105
+ --------------------------------------------------------------
106
+ --------------------------------------------------------------
107
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
108
+ --------------------------------------------------------------
109
+ ---------------------------------------------------------
110
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
111
+ ---------------------------------------------------------
112
+ -------------------------------------------------------------
113
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
114
+ -------------------------------------------------------------
115
+ --------------------------------------------------------------------------------------------------
116
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
117
+ --------------------------------------------------------------------------------------------------
118
+ ----------------------------------------------------------------------
119
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
120
+ ----------------------------------------------------------------------
121
+ -------------------------------------------------------
122
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
123
+ -------------------------------------------------------
124
+ --------------------------------------------------------------
125
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
126
+ --------------------------------------------------------------
127
+ --------------------------------------------------------------
128
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
129
+ --------------------------------------------------------------
130
+ ---------------------------------------------------------
131
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
132
+ ---------------------------------------------------------
133
+ -------------------------------------------------------------
134
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
135
+ -------------------------------------------------------------
136
+ --------------------------------------------------------------------------------------------------
137
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
138
+ --------------------------------------------------------------------------------------------------
139
+ ----------------------------------------------------------------------
140
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
141
+ ----------------------------------------------------------------------
142
+ -------------------------------------------------------
143
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
144
+ -------------------------------------------------------
145
+ --------------------------------------------------------------
146
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
147
+ --------------------------------------------------------------
148
+ --------------------------------------------------------------
149
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
150
+ --------------------------------------------------------------
151
+ ---------------------------------------------------------
152
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
153
+ ---------------------------------------------------------
154
+ -------------------------------------------------------------
155
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
156
+ -------------------------------------------------------------
157
+ --------------------------------------------------------------------------------------------------
158
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
159
+ --------------------------------------------------------------------------------------------------
160
+ ----------------------------------------------------------------------
161
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
162
+ ----------------------------------------------------------------------
163
+ -------------------------------------------------------
164
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
165
+ -------------------------------------------------------
166
+ --------------------------------------------------------------
167
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
168
+ --------------------------------------------------------------
169
+ --------------------------------------------------------------
170
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
171
+ --------------------------------------------------------------
172
+ ---------------------------------------------------------
173
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
174
+ ---------------------------------------------------------
175
+ -------------------------------------------------------------
176
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
177
+ -------------------------------------------------------------
178
+ --------------------------------------------------------------------------------------------------
179
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
180
+ --------------------------------------------------------------------------------------------------
181
+ ----------------------------------------------------------------------
182
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
183
+ ----------------------------------------------------------------------
184
+ -------------------------------------------------------
185
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
186
+ -------------------------------------------------------
187
+ --------------------------------------------------------------
188
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
189
+ --------------------------------------------------------------
190
+ --------------------------------------------------------------
191
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
192
+ --------------------------------------------------------------
193
+ ---------------------------------------------------------
194
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
195
+ ---------------------------------------------------------
196
+ -------------------------------------------------------------
197
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
198
+ -------------------------------------------------------------
199
+ --------------------------------------------------------------------------------------------------
200
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
201
+ --------------------------------------------------------------------------------------------------
202
+ ----------------------------------------------------------------------
203
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
204
+ ----------------------------------------------------------------------
205
+ -------------------------------------------------------
206
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
207
+ -------------------------------------------------------
208
+ --------------------------------------------------------------
209
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
210
+ --------------------------------------------------------------
211
+ --------------------------------------------------------------
212
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
213
+ --------------------------------------------------------------
214
+ ---------------------------------------------------------
215
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
216
+ ---------------------------------------------------------
217
+ -------------------------------------------------------------
218
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
219
+ -------------------------------------------------------------
220
+ --------------------------------------------------------------------------------------------------
221
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
222
+ --------------------------------------------------------------------------------------------------
223
+ ----------------------------------------------------------------------
224
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
225
+ ----------------------------------------------------------------------
226
+ -------------------------------------------------------
227
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
228
+ -------------------------------------------------------
229
+ --------------------------------------------------------------
230
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
231
+ --------------------------------------------------------------
232
+ --------------------------------------------------------------
233
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
234
+ --------------------------------------------------------------
235
+ ---------------------------------------------------------
236
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
237
+ ---------------------------------------------------------
238
+ -------------------------------------------------------------
239
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
240
+ -------------------------------------------------------------
241
+ --------------------------------------------------------------------------------------------------
242
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
243
+ --------------------------------------------------------------------------------------------------
244
+ ----------------------------------------------------------------------
245
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
246
+ ----------------------------------------------------------------------
247
+ -------------------------------------------------------
248
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
249
+ -------------------------------------------------------
250
+ --------------------------------------------------------------
251
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
252
+ --------------------------------------------------------------
253
+ --------------------------------------------------------------
254
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
255
+ --------------------------------------------------------------
256
+ ---------------------------------------------------------
257
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
258
+ ---------------------------------------------------------
259
+ -------------------------------------------------------------
260
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
261
+ -------------------------------------------------------------
262
+ --------------------------------------------------------------------------------------------------
263
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
264
+ --------------------------------------------------------------------------------------------------
265
+ ----------------------------------------------------------------------
266
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
267
+ ----------------------------------------------------------------------
268
+ -------------------------------------------------------
269
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
270
+ -------------------------------------------------------
271
+ --------------------------------------------------------------
272
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
273
+ --------------------------------------------------------------
274
+ --------------------------------------------------------------
275
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
276
+ --------------------------------------------------------------
277
+ ---------------------------------------------------------
278
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
279
+ ---------------------------------------------------------
280
+ -------------------------------------------------------------
281
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
282
+ -------------------------------------------------------------
283
+ --------------------------------------------------------------------------------------------------
284
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
285
+ --------------------------------------------------------------------------------------------------
286
+ ----------------------------------------------------------------------
287
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
288
+ ----------------------------------------------------------------------
289
+ -------------------------------------------------------
290
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
291
+ -------------------------------------------------------
292
+ --------------------------------------------------------------
293
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
294
+ --------------------------------------------------------------
295
+ --------------------------------------------------------------
296
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
297
+ --------------------------------------------------------------
298
+ ---------------------------------------------------------
299
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
300
+ ---------------------------------------------------------
301
+ -------------------------------------------------------------
302
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
303
+ -------------------------------------------------------------
304
+ --------------------------------------------------------------------------------------------------
305
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
306
+ --------------------------------------------------------------------------------------------------
307
+ ----------------------------------------------------------------------
308
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
309
+ ----------------------------------------------------------------------
310
+ -------------------------------------------------------
311
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
312
+ -------------------------------------------------------
313
+ --------------------------------------------------------------
314
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
315
+ --------------------------------------------------------------
316
+ --------------------------------------------------------------
317
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
318
+ --------------------------------------------------------------
319
+ ---------------------------------------------------------
320
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
321
+ ---------------------------------------------------------
322
+ -------------------------------------------------------------
323
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
324
+ -------------------------------------------------------------
325
+ --------------------------------------------------------------------------------------------------
326
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
327
+ --------------------------------------------------------------------------------------------------
328
+ ----------------------------------------------------------------------
329
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
330
+ ----------------------------------------------------------------------
331
+ -------------------------------------------------------
332
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
333
+ -------------------------------------------------------
334
+ --------------------------------------------------------------
335
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
336
+ --------------------------------------------------------------
337
+ --------------------------------------------------------------
338
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
339
+ --------------------------------------------------------------
340
+ ---------------------------------------------------------
341
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
342
+ ---------------------------------------------------------
343
+ -------------------------------------------------------------
344
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
345
+ -------------------------------------------------------------
346
+ --------------------------------------------------------------------------------------------------
347
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
348
+ --------------------------------------------------------------------------------------------------
349
+ ----------------------------------------------------------------------
350
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
351
+ ----------------------------------------------------------------------
352
+ -------------------------------------------------------
353
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
354
+ -------------------------------------------------------
355
+ --------------------------------------------------------------
356
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
357
+ --------------------------------------------------------------
358
+ --------------------------------------------------------------
359
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
360
+ --------------------------------------------------------------
361
+ ---------------------------------------------------------
362
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
363
+ ---------------------------------------------------------
364
+ -------------------------------------------------------------
365
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
366
+ -------------------------------------------------------------
367
+ --------------------------------------------------------------------------------------------------
368
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
369
+ --------------------------------------------------------------------------------------------------
370
+ ----------------------------------------------------------------------
371
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
372
+ ----------------------------------------------------------------------
373
+ -------------------------------------------------------
374
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
375
+ -------------------------------------------------------
376
+ --------------------------------------------------------------
377
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
378
+ --------------------------------------------------------------
379
+ --------------------------------------------------------------
380
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
381
+ --------------------------------------------------------------
382
+ ---------------------------------------------------------
383
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
384
+ ---------------------------------------------------------
385
+ -------------------------------------------------------------
386
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
387
+ -------------------------------------------------------------
388
+ --------------------------------------------------------------------------------------------------
389
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
390
+ --------------------------------------------------------------------------------------------------
391
+ ----------------------------------------------------------------------
392
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
393
+ ----------------------------------------------------------------------
394
+ -------------------------------------------------------
395
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
396
+ -------------------------------------------------------
397
+ --------------------------------------------------------------
398
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
399
+ --------------------------------------------------------------
400
+ --------------------------------------------------------------
401
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
402
+ --------------------------------------------------------------
403
+ ---------------------------------------------------------
404
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
405
+ ---------------------------------------------------------
406
+ -------------------------------------------------------------
407
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
408
+ -------------------------------------------------------------
409
+ --------------------------------------------------------------------------------------------------
410
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
411
+ --------------------------------------------------------------------------------------------------
412
+ ----------------------------------------------------------------------
413
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
414
+ ----------------------------------------------------------------------
415
+ -------------------------------------------------------
416
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
417
+ -------------------------------------------------------
418
+ --------------------------------------------------------------
419
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
420
+ --------------------------------------------------------------
421
+ --------------------------------------------------------------
422
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
423
+ --------------------------------------------------------------
424
+ ---------------------------------------------------------
425
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
426
+ ---------------------------------------------------------
427
+ -------------------------------------------------------------
428
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
429
+ -------------------------------------------------------------
430
+ --------------------------------------------------------------------------------------------------
431
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
432
+ --------------------------------------------------------------------------------------------------
433
+ ----------------------------------------------------------------------
434
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
435
+ ----------------------------------------------------------------------
436
+ -------------------------------------------------------
437
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
438
+ -------------------------------------------------------
439
+ --------------------------------------------------------------
440
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
441
+ --------------------------------------------------------------
442
+ --------------------------------------------------------------
443
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
444
+ --------------------------------------------------------------
445
+ ---------------------------------------------------------
446
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
447
+ ---------------------------------------------------------
448
+ -------------------------------------------------------------
449
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
450
+ -------------------------------------------------------------
451
+ --------------------------------------------------------------------------------------------------
452
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
453
+ --------------------------------------------------------------------------------------------------
454
+ ----------------------------------------------------------------------
455
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
456
+ ----------------------------------------------------------------------
457
+ -------------------------------------------------------
458
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
459
+ -------------------------------------------------------
460
+ --------------------------------------------------------------
461
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
462
+ --------------------------------------------------------------
463
+ --------------------------------------------------------------
464
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
465
+ --------------------------------------------------------------
466
+ ---------------------------------------------------------
467
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
468
+ ---------------------------------------------------------
469
+ -------------------------------------------------------------
470
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
471
+ -------------------------------------------------------------
472
+ --------------------------------------------------------------------------------------------------
473
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
474
+ --------------------------------------------------------------------------------------------------
475
+ ----------------------------------------------------------------------
476
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
477
+ ----------------------------------------------------------------------
478
+ -------------------------------------------------------
479
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
480
+ -------------------------------------------------------
481
+ --------------------------------------------------------------
482
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
483
+ --------------------------------------------------------------
484
+ --------------------------------------------------------------
485
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
486
+ --------------------------------------------------------------
487
+ ---------------------------------------------------------
488
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
489
+ ---------------------------------------------------------
490
+ -------------------------------------------------------------
491
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
492
+ -------------------------------------------------------------
493
+ --------------------------------------------------------------------------------------------------
494
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
495
+ --------------------------------------------------------------------------------------------------
496
+ ----------------------------------------------------------------------
497
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
498
+ ----------------------------------------------------------------------
499
+ -------------------------------------------------------
500
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
501
+ -------------------------------------------------------
502
+ --------------------------------------------------------------
503
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
504
+ --------------------------------------------------------------
505
+ --------------------------------------------------------------
506
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
507
+ --------------------------------------------------------------
508
+ ---------------------------------------------------------
509
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
510
+ ---------------------------------------------------------
511
+ -------------------------------------------------------------
512
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
513
+ -------------------------------------------------------------
514
+ --------------------------------------------------------------------------------------------------
515
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
516
+ --------------------------------------------------------------------------------------------------
517
+ ----------------------------------------------------------------------
518
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
519
+ ----------------------------------------------------------------------
520
+ -------------------------------------------------------
521
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
522
+ -------------------------------------------------------
523
+ --------------------------------------------------------------
524
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
525
+ --------------------------------------------------------------
526
+ --------------------------------------------------------------
527
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
528
+ --------------------------------------------------------------
529
+ ---------------------------------------------------------
530
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
531
+ ---------------------------------------------------------
532
+ -------------------------------------------------------------
533
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
534
+ -------------------------------------------------------------
535
+ --------------------------------------------------------------------------------------------------
536
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
537
+ --------------------------------------------------------------------------------------------------
538
+ ----------------------------------------------------------------------
539
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
540
+ ----------------------------------------------------------------------
541
+ -------------------------------------------------------
542
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
543
+ -------------------------------------------------------
544
+ --------------------------------------------------------------
545
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
546
+ --------------------------------------------------------------
547
+ --------------------------------------------------------------
548
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
549
+ --------------------------------------------------------------
550
+ ---------------------------------------------------------
551
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
552
+ ---------------------------------------------------------
553
+ -------------------------------------------------------------
554
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
555
+ -------------------------------------------------------------
556
+ --------------------------------------------------------------------------------------------------
557
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
558
+ --------------------------------------------------------------------------------------------------
559
+ ----------------------------------------------------------------------
560
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
561
+ ----------------------------------------------------------------------
562
+ -------------------------------------------------------
563
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
564
+ -------------------------------------------------------
565
+ --------------------------------------------------------------
566
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
567
+ --------------------------------------------------------------
568
+ --------------------------------------------------------------
569
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
570
+ --------------------------------------------------------------
571
+ ---------------------------------------------------------
572
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
573
+ ---------------------------------------------------------
574
+ -------------------------------------------------------------
575
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
576
+ -------------------------------------------------------------
577
+ --------------------------------------------------------------------------------------------------
578
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
579
+ --------------------------------------------------------------------------------------------------
580
+ ----------------------------------------------------------------------
581
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
582
+ ----------------------------------------------------------------------
583
+ -------------------------------------------------------
584
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
585
+ -------------------------------------------------------
586
+ --------------------------------------------------------------
587
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
588
+ --------------------------------------------------------------
589
+ --------------------------------------------------------------
590
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
591
+ --------------------------------------------------------------
592
+ ---------------------------------------------------------
593
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
594
+ ---------------------------------------------------------
595
+ -------------------------------------------------------------
596
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
597
+ -------------------------------------------------------------
598
+ --------------------------------------------------------------------------------------------------
599
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
600
+ --------------------------------------------------------------------------------------------------
601
+ ----------------------------------------------------------------------
602
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
603
+ ----------------------------------------------------------------------
604
+ -------------------------------------------------------
605
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
606
+ -------------------------------------------------------
607
+ --------------------------------------------------------------
608
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
609
+ --------------------------------------------------------------
610
+ --------------------------------------------------------------
611
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
612
+ --------------------------------------------------------------
613
+ ---------------------------------------------------------
614
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
615
+ ---------------------------------------------------------
616
+ -------------------------------------------------------------
617
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
618
+ -------------------------------------------------------------
619
+ --------------------------------------------------------------------------------------------------
620
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
621
+ --------------------------------------------------------------------------------------------------
622
+ ----------------------------------------------------------------------
623
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
624
+ ----------------------------------------------------------------------
625
+ -------------------------------------------------------
626
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
627
+ -------------------------------------------------------
628
+ --------------------------------------------------------------
629
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
630
+ --------------------------------------------------------------
631
+ --------------------------------------------------------------
632
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
633
+ --------------------------------------------------------------
634
+ ---------------------------------------------------------
635
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
636
+ ---------------------------------------------------------
637
+ -------------------------------------------------------------
638
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
639
+ -------------------------------------------------------------
640
+ --------------------------------------------------------------------------------------------------
641
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
642
+ --------------------------------------------------------------------------------------------------
643
+ ----------------------------------------------------------------------
644
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
645
+ ----------------------------------------------------------------------
646
+ -------------------------------------------------------
647
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
648
+ -------------------------------------------------------
649
+ --------------------------------------------------------------
650
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
651
+ --------------------------------------------------------------
652
+ --------------------------------------------------------------
653
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
654
+ --------------------------------------------------------------
655
+ ---------------------------------------------------------
656
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
657
+ ---------------------------------------------------------
658
+ -------------------------------------------------------------
659
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
660
+ -------------------------------------------------------------
661
+ --------------------------------------------------------------------------------------------------
662
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
663
+ --------------------------------------------------------------------------------------------------
664
+ ----------------------------------------------------------------------
665
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
666
+ ----------------------------------------------------------------------
667
+ -------------------------------------------------------
668
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
669
+ -------------------------------------------------------
670
+ --------------------------------------------------------------
671
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
672
+ --------------------------------------------------------------
673
+ --------------------------------------------------------------
674
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
675
+ --------------------------------------------------------------
676
+ ---------------------------------------------------------
677
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
678
+ ---------------------------------------------------------
679
+ -------------------------------------------------------------
680
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
681
+ -------------------------------------------------------------
682
+ --------------------------------------------------------------------------------------------------
683
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
684
+ --------------------------------------------------------------------------------------------------
685
+ ----------------------------------------------------------------------
686
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
687
+ ----------------------------------------------------------------------
688
+ -------------------------------------------------------
689
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
690
+ -------------------------------------------------------
691
+ --------------------------------------------------------------
692
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
693
+ --------------------------------------------------------------
694
+ --------------------------------------------------------------
695
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
696
+ --------------------------------------------------------------
697
+ ---------------------------------------------------------
698
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
699
+ ---------------------------------------------------------
700
+ -------------------------------------------------------------
701
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
702
+ -------------------------------------------------------------
703
+ --------------------------------------------------------------------------------------------------
704
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
705
+ --------------------------------------------------------------------------------------------------
706
+ ----------------------------------------------------------------------
707
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
708
+ ----------------------------------------------------------------------
709
+ -------------------------------------------------------
710
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
711
+ -------------------------------------------------------
712
+ --------------------------------------------------------------
713
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
714
+ --------------------------------------------------------------
715
+ --------------------------------------------------------------
716
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
717
+ --------------------------------------------------------------
718
+ ---------------------------------------------------------
719
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
720
+ ---------------------------------------------------------
721
+ -------------------------------------------------------------
722
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
723
+ -------------------------------------------------------------
724
+ --------------------------------------------------------------------------------------------------
725
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
726
+ --------------------------------------------------------------------------------------------------
727
+ ----------------------------------------------------------------------
728
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
729
+ ----------------------------------------------------------------------
730
+ -------------------------------------------------------
731
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
732
+ -------------------------------------------------------
733
+ --------------------------------------------------------------
734
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
735
+ --------------------------------------------------------------
736
+ --------------------------------------------------------------
737
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
738
+ --------------------------------------------------------------
739
+ ---------------------------------------------------------
740
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
741
+ ---------------------------------------------------------
742
+ -------------------------------------------------------------
743
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
744
+ -------------------------------------------------------------
745
+ --------------------------------------------------------------------------------------------------
746
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
747
+ --------------------------------------------------------------------------------------------------
748
+ ----------------------------------------------------------------------
749
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
750
+ ----------------------------------------------------------------------
751
+ -------------------------------------------------------
752
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
753
+ -------------------------------------------------------
754
+ --------------------------------------------------------------
755
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
756
+ --------------------------------------------------------------
757
+ --------------------------------------------------------------
758
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
759
+ --------------------------------------------------------------
760
+ ---------------------------------------------------------
761
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
762
+ ---------------------------------------------------------
763
+ -------------------------------------------------------------
764
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
765
+ -------------------------------------------------------------
766
+ --------------------------------------------------------------------------------------------------
767
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
768
+ --------------------------------------------------------------------------------------------------
769
+ ----------------------------------------------------------------------
770
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
771
+ ----------------------------------------------------------------------
772
+ -------------------------------------------------------
773
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
774
+ -------------------------------------------------------
775
+ --------------------------------------------------------------
776
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
777
+ --------------------------------------------------------------
778
+ --------------------------------------------------------------
779
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
780
+ --------------------------------------------------------------
781
+ ---------------------------------------------------------
782
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
783
+ ---------------------------------------------------------
784
+ -------------------------------------------------------------
785
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
786
+ -------------------------------------------------------------
787
+ --------------------------------------------------------------------------------------------------
788
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
789
+ --------------------------------------------------------------------------------------------------
790
+ ----------------------------------------------------------------------
791
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
792
+ ----------------------------------------------------------------------
793
+ -------------------------------------------------------
794
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
795
+ -------------------------------------------------------
796
+ --------------------------------------------------------------
797
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
798
+ --------------------------------------------------------------
799
+ --------------------------------------------------------------
800
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
801
+ --------------------------------------------------------------
802
+ ---------------------------------------------------------
803
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
804
+ ---------------------------------------------------------
805
+ -------------------------------------------------------------
806
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
807
+ -------------------------------------------------------------
808
+ --------------------------------------------------------------------------------------------------
809
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
810
+ --------------------------------------------------------------------------------------------------
811
+ ----------------------------------------------------------------------
812
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
813
+ ----------------------------------------------------------------------
814
+ -------------------------------------------------------
815
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
816
+ -------------------------------------------------------
817
+ --------------------------------------------------------------
818
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
819
+ --------------------------------------------------------------
820
+ --------------------------------------------------------------
821
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
822
+ --------------------------------------------------------------
823
+ ---------------------------------------------------------
824
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
825
+ ---------------------------------------------------------
826
+ -------------------------------------------------------------
827
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
828
+ -------------------------------------------------------------
829
+ --------------------------------------------------------------------------------------------------
830
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
831
+ --------------------------------------------------------------------------------------------------
832
+ ----------------------------------------------------------------------
833
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
834
+ ----------------------------------------------------------------------
835
+ -------------------------------------------------------
836
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
837
+ -------------------------------------------------------
838
+ --------------------------------------------------------------
839
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
840
+ --------------------------------------------------------------
841
+ --------------------------------------------------------------
842
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
843
+ --------------------------------------------------------------
844
+ ---------------------------------------------------------
845
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
846
+ ---------------------------------------------------------
847
+ -------------------------------------------------------------
848
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
849
+ -------------------------------------------------------------
850
+ --------------------------------------------------------------------------------------------------
851
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
852
+ --------------------------------------------------------------------------------------------------
853
+ ----------------------------------------------------------------------
854
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
855
+ ----------------------------------------------------------------------
856
+ -------------------------------------------------------
857
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
858
+ -------------------------------------------------------
859
+ --------------------------------------------------------------
860
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
861
+ --------------------------------------------------------------
862
+ --------------------------------------------------------------
863
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
864
+ --------------------------------------------------------------
865
+ ---------------------------------------------------------
866
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
867
+ ---------------------------------------------------------
868
+ -------------------------------------------------------------
869
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
870
+ -------------------------------------------------------------
871
+ --------------------------------------------------------------------------------------------------
872
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
873
+ --------------------------------------------------------------------------------------------------
874
+ ----------------------------------------------------------------------
875
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
876
+ ----------------------------------------------------------------------
877
+ -------------------------------------------------------
878
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
879
+ -------------------------------------------------------
880
+ --------------------------------------------------------------
881
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
882
+ --------------------------------------------------------------
883
+ --------------------------------------------------------------
884
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
885
+ --------------------------------------------------------------
886
+ ---------------------------------------------------------
887
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
888
+ ---------------------------------------------------------
889
+ -------------------------------------------------------------
890
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
891
+ -------------------------------------------------------------
892
+ --------------------------------------------------------------------------------------------------
893
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
894
+ --------------------------------------------------------------------------------------------------
895
+ ----------------------------------------------------------------------
896
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
897
+ ----------------------------------------------------------------------
898
+ -------------------------------------------------------
899
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
900
+ -------------------------------------------------------
901
+ --------------------------------------------------------------
902
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
903
+ --------------------------------------------------------------
904
+ --------------------------------------------------------------
905
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
906
+ --------------------------------------------------------------
907
+ ---------------------------------------------------------
908
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
909
+ ---------------------------------------------------------
910
+ -------------------------------------------------------------
911
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
912
+ -------------------------------------------------------------
913
+ --------------------------------------------------------------------------------------------------
914
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
915
+ --------------------------------------------------------------------------------------------------
916
+ ----------------------------------------------------------------------
917
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
918
+ ----------------------------------------------------------------------
919
+ -------------------------------------------------------
920
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
921
+ -------------------------------------------------------
922
+ --------------------------------------------------------------
923
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
924
+ --------------------------------------------------------------
925
+ --------------------------------------------------------------
926
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
927
+ --------------------------------------------------------------
928
+ ---------------------------------------------------------
929
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
930
+ ---------------------------------------------------------
931
+ -------------------------------------------------------------
932
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
933
+ -------------------------------------------------------------
934
+ --------------------------------------------------------------------------------------------------
935
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
936
+ --------------------------------------------------------------------------------------------------
937
+ ----------------------------------------------------------------------
938
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
939
+ ----------------------------------------------------------------------
940
+ -------------------------------------------------------
941
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
942
+ -------------------------------------------------------
943
+ --------------------------------------------------------------
944
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
945
+ --------------------------------------------------------------
946
+ --------------------------------------------------------------
947
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
948
+ --------------------------------------------------------------
949
+ ---------------------------------------------------------
950
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
951
+ ---------------------------------------------------------
952
+ -------------------------------------------------------------
953
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
954
+ -------------------------------------------------------------
955
+ --------------------------------------------------------------------------------------------------
956
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
957
+ --------------------------------------------------------------------------------------------------
958
+ ----------------------------------------------------------------------
959
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
960
+ ----------------------------------------------------------------------
961
+ -------------------------------------------------------
962
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
963
+ -------------------------------------------------------
964
+ --------------------------------------------------------------
965
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
966
+ --------------------------------------------------------------
967
+ --------------------------------------------------------------
968
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
969
+ --------------------------------------------------------------
970
+ ---------------------------------------------------------
971
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
972
+ ---------------------------------------------------------
973
+ -------------------------------------------------------------
974
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
975
+ -------------------------------------------------------------
976
+ --------------------------------------------------------------------------------------------------
977
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
978
+ --------------------------------------------------------------------------------------------------
979
+ ----------------------------------------------------------------------
980
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
981
+ ----------------------------------------------------------------------
982
+ -------------------------------------------------------
983
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
984
+ -------------------------------------------------------
985
+ --------------------------------------------------------------
986
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
987
+ --------------------------------------------------------------
988
+ --------------------------------------------------------------
989
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
990
+ --------------------------------------------------------------
991
+ ---------------------------------------------------------
992
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
993
+ ---------------------------------------------------------
994
+ -------------------------------------------------------------
995
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
996
+ -------------------------------------------------------------
997
+ --------------------------------------------------------------------------------------------------
998
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
999
+ --------------------------------------------------------------------------------------------------
1000
+ ----------------------------------------------------------------------
1001
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1002
+ ----------------------------------------------------------------------
1003
+ -------------------------------------------------------
1004
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1005
+ -------------------------------------------------------
1006
+ --------------------------------------------------------------
1007
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1008
+ --------------------------------------------------------------
1009
+ --------------------------------------------------------------
1010
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1011
+ --------------------------------------------------------------
1012
+ ---------------------------------------------------------
1013
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1014
+ ---------------------------------------------------------
1015
+ -------------------------------------------------------------
1016
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1017
+ -------------------------------------------------------------
1018
+ --------------------------------------------------------------------------------------------------
1019
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1020
+ --------------------------------------------------------------------------------------------------
1021
+ ----------------------------------------------------------------------
1022
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1023
+ ----------------------------------------------------------------------
1024
+ -------------------------------------------------------
1025
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1026
+ -------------------------------------------------------
1027
+ --------------------------------------------------------------
1028
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1029
+ --------------------------------------------------------------
1030
+ --------------------------------------------------------------
1031
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1032
+ --------------------------------------------------------------
1033
+ ---------------------------------------------------------
1034
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1035
+ ---------------------------------------------------------
1036
+ -------------------------------------------------------------
1037
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1038
+ -------------------------------------------------------------
1039
+ --------------------------------------------------------------------------------------------------
1040
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1041
+ --------------------------------------------------------------------------------------------------
1042
+ ----------------------------------------------------------------------
1043
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1044
+ ----------------------------------------------------------------------
1045
+ -------------------------------------------------------
1046
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1047
+ -------------------------------------------------------
1048
+ --------------------------------------------------------------
1049
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1050
+ --------------------------------------------------------------
1051
+ --------------------------------------------------------------
1052
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1053
+ --------------------------------------------------------------
1054
+ ---------------------------------------------------------
1055
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1056
+ ---------------------------------------------------------
1057
+ ---------------------------------------------------------
1058
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1059
+ ---------------------------------------------------------
1060
+ -------------------------------------------------------------
1061
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1062
+ -------------------------------------------------------------
1063
+ --------------------------------------------------------------------------------------------------
1064
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1065
+ --------------------------------------------------------------------------------------------------
1066
+ ----------------------------------------------------------------------
1067
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1068
+ ----------------------------------------------------------------------
1069
+ -------------------------------------------------------
1070
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1071
+ -------------------------------------------------------
1072
+ --------------------------------------------------------------
1073
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1074
+ --------------------------------------------------------------
1075
+ --------------------------------------------------------------
1076
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1077
+ --------------------------------------------------------------
1078
+ ---------------------------------------------------------
1079
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1080
+ ---------------------------------------------------------
1081
+ ---------------------------------------------------------
1082
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1083
+ ---------------------------------------------------------
1084
+ -------------------------------------------------------------
1085
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1086
+ -------------------------------------------------------------
1087
+ --------------------------------------------------------------------------------------------------
1088
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1089
+ --------------------------------------------------------------------------------------------------
1090
+ ----------------------------------------------------------------------
1091
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1092
+ ----------------------------------------------------------------------
1093
+ -------------------------------------------------------
1094
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1095
+ -------------------------------------------------------
1096
+ --------------------------------------------------------------
1097
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1098
+ --------------------------------------------------------------
1099
+ --------------------------------------------------------------
1100
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1101
+ --------------------------------------------------------------
1102
+ ---------------------------------------------------------
1103
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1104
+ ---------------------------------------------------------
1105
+ ---------------------------------------------------------
1106
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1107
+ ---------------------------------------------------------
1108
+ -------------------------------------------------------------
1109
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1110
+ -------------------------------------------------------------
1111
+ --------------------------------------------------------------------------------------------------
1112
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1113
+ --------------------------------------------------------------------------------------------------
1114
+ ----------------------------------------------------------------------
1115
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1116
+ ----------------------------------------------------------------------
1117
+ -------------------------------------------------------
1118
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1119
+ -------------------------------------------------------
1120
+ --------------------------------------------------------------
1121
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1122
+ --------------------------------------------------------------
1123
+ --------------------------------------------------------------
1124
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1125
+ --------------------------------------------------------------
1126
+ ---------------------------------------------------------
1127
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1128
+ ---------------------------------------------------------
1129
+ ---------------------------------------------------------
1130
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1131
+ ---------------------------------------------------------
1132
+ -------------------------------------------------------------
1133
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1134
+ -------------------------------------------------------------
1135
+ --------------------------------------------------------------------------------------------------
1136
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1137
+ --------------------------------------------------------------------------------------------------
1138
+ ----------------------------------------------------------------------
1139
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1140
+ ----------------------------------------------------------------------
1141
+ -------------------------------------------------------
1142
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1143
+ -------------------------------------------------------
1144
+ --------------------------------------------------------------
1145
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1146
+ --------------------------------------------------------------
1147
+ --------------------------------------------------------------
1148
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1149
+ --------------------------------------------------------------
1150
+ ---------------------------------------------------------
1151
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1152
+ ---------------------------------------------------------
1153
+ ---------------------------------------------------------
1154
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1155
+ ---------------------------------------------------------
1156
+ -------------------------------------------------------------
1157
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1158
+ -------------------------------------------------------------
1159
+ --------------------------------------------------------------------------------------------------
1160
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1161
+ --------------------------------------------------------------------------------------------------
1162
+ ----------------------------------------------------------------------
1163
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1164
+ ----------------------------------------------------------------------
1165
+ -------------------------------------------------------
1166
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1167
+ -------------------------------------------------------
1168
+ --------------------------------------------------------------
1169
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1170
+ --------------------------------------------------------------
1171
+ --------------------------------------------------------------
1172
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1173
+ --------------------------------------------------------------
1174
+ ---------------------------------------------------------
1175
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1176
+ ---------------------------------------------------------
1177
+ ---------------------------------------------------------
1178
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1179
+ ---------------------------------------------------------
1180
+ -------------------------------------------------------------
1181
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1182
+ -------------------------------------------------------------
1183
+ --------------------------------------------------------------------------------------------------
1184
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1185
+ --------------------------------------------------------------------------------------------------
1186
+ ----------------------------------------------------------------------
1187
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1188
+ ----------------------------------------------------------------------
1189
+ -------------------------------------------------------
1190
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1191
+ -------------------------------------------------------
1192
+ --------------------------------------------------------------
1193
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1194
+ --------------------------------------------------------------
1195
+ --------------------------------------------------------------
1196
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1197
+ --------------------------------------------------------------
1198
+ ---------------------------------------------------------
1199
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1200
+ ---------------------------------------------------------
1201
+ ---------------------------------------------------------
1202
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1203
+ ---------------------------------------------------------
1204
+ -------------------------------------------------------------
1205
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1206
+ -------------------------------------------------------------
1207
+ --------------------------------------------------------------------------------------------------
1208
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1209
+ --------------------------------------------------------------------------------------------------
1210
+ ----------------------------------------------------------------------
1211
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1212
+ ----------------------------------------------------------------------
1213
+ -------------------------------------------------------
1214
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1215
+ -------------------------------------------------------
1216
+ --------------------------------------------------------------
1217
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1218
+ --------------------------------------------------------------
1219
+ --------------------------------------------------------------
1220
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1221
+ --------------------------------------------------------------
1222
+ ---------------------------------------------------------
1223
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1224
+ ---------------------------------------------------------
1225
+ ---------------------------------------------------------
1226
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1227
+ ---------------------------------------------------------
1228
+ -------------------------------------------------------------
1229
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1230
+ -------------------------------------------------------------
1231
+ --------------------------------------------------------------------------------------------------
1232
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1233
+ --------------------------------------------------------------------------------------------------
1234
+ ----------------------------------------------------------------------
1235
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1236
+ ----------------------------------------------------------------------
1237
+ -------------------------------------------------------
1238
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1239
+ -------------------------------------------------------
1240
+ --------------------------------------------------------------
1241
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1242
+ --------------------------------------------------------------
1243
+ --------------------------------------------------------------
1244
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1245
+ --------------------------------------------------------------
1246
+ ---------------------------------------------------------
1247
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1248
+ ---------------------------------------------------------
1249
+ ---------------------------------------------------------
1250
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1251
+ ---------------------------------------------------------
1252
+ -------------------------------------------------------------
1253
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1254
+ -------------------------------------------------------------
1255
+ --------------------------------------------------------------------------------------------------
1256
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1257
+ --------------------------------------------------------------------------------------------------
1258
+ ----------------------------------------------------------------------
1259
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1260
+ ----------------------------------------------------------------------
1261
+ -------------------------------------------------------
1262
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1263
+ -------------------------------------------------------
1264
+ --------------------------------------------------------------
1265
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1266
+ --------------------------------------------------------------
1267
+ --------------------------------------------------------------
1268
+ CouchRestAdapterTest: test_attributes_are_available_as_methods
1269
+ --------------------------------------------------------------
1270
+ ---------------------------------------------------------
1271
+ CouchRestAdapterTest: test_can_not_instantiate_base_class
1272
+ ---------------------------------------------------------
1273
+ ---------------------------------------------------------
1274
+ CouchRestAdapterTest: test_find_will_work_with_partial_id
1275
+ ---------------------------------------------------------
1276
+ -------------------------------------------------------------
1277
+ CouchRestAdapterTest: test_one_can_update_existing_attributes
1278
+ -------------------------------------------------------------
1279
+ --------------------------------------------------------------------------------------------------
1280
+ CouchRestAdapterTest: test_query_all_by_type_will_return_array_of_docs_with_type_set_to_model_name
1281
+ --------------------------------------------------------------------------------------------------
1282
+ ----------------------------------------------------------------------
1283
+ CouchRestAdapterTest: test_query_all_will_bring_array_of_Foo_instances
1284
+ ----------------------------------------------------------------------
1285
+ -------------------------------------------------------
1286
+ CouchRestAdapterTest: test_update_to_attr=_will_persist
1287
+ -------------------------------------------------------
1288
+ --------------------------------------------------------------
1289
+ CouchRestAdapterTest: test_will_add_class_underscorename_to_id
1290
+ --------------------------------------------------------------