array_tree 0.0.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 (42) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/Array.rb +16 -0
  5. data/lib/array_tree.rb +4 -0
  6. data/lib/array_tree/version.rb +3 -0
  7. data/test/array_tree_test.rb +33 -0
  8. data/test/dummy/README.rdoc +28 -0
  9. data/test/dummy/Rakefile +6 -0
  10. data/test/dummy/app/assets/javascripts/application.js +13 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  12. data/test/dummy/app/controllers/application_controller.rb +5 -0
  13. data/test/dummy/app/helpers/application_helper.rb +2 -0
  14. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  15. data/test/dummy/bin/bundle +3 -0
  16. data/test/dummy/bin/rails +4 -0
  17. data/test/dummy/bin/rake +4 -0
  18. data/test/dummy/config.ru +4 -0
  19. data/test/dummy/config/application.rb +23 -0
  20. data/test/dummy/config/boot.rb +5 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +29 -0
  24. data/test/dummy/config/environments/production.rb +80 -0
  25. data/test/dummy/config/environments/test.rb +36 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  28. data/test/dummy/config/initializers/inflections.rb +16 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +12 -0
  31. data/test/dummy/config/initializers/session_store.rb +3 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +23 -0
  34. data/test/dummy/config/routes.rb +56 -0
  35. data/test/dummy/db/test.sqlite3 +0 -0
  36. data/test/dummy/log/test.log +710 -0
  37. data/test/dummy/public/404.html +58 -0
  38. data/test/dummy/public/422.html +58 -0
  39. data/test/dummy/public/500.html +57 -0
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/test_helper.rb +15 -0
  42. metadata +118 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'bd97e8c3720b1823027ef9eaaf386ea302bf47eb53aedbbf712255402c0ec0f7f11305136d593ef5114778e79a236aa0305f30d9d632621dfe33d2d3f5c96787'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
File without changes
@@ -0,0 +1,710 @@
1
+  (1.7ms) begin transaction
2
+ -----------------------------
3
+ ArrayChildrenTest: test_truth
4
+ -----------------------------
5
+  (0.0ms) rollback transaction
6
+  (1.7ms) begin transaction
7
+ ----------------------------------------------
8
+ ArrayChildrenTest: test_test_array_with_parent
9
+ ----------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ -------------------------------------------------
13
+ ArrayChildrenTest: test_test_array_without_parent
14
+ -------------------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (1.5ms) begin transaction
17
+ ----------------------------------------------
18
+ ArrayChildrenTest: test_test_array_with_parent
19
+ ----------------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.0ms) begin transaction
22
+ -------------------------------------------------
23
+ ArrayChildrenTest: test_test_array_without_parent
24
+ -------------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (1.3ms) begin transaction
27
+ ----------------------------------------------
28
+ ArrayChildrenTest: test_test_array_with_parent
29
+ ----------------------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ -------------------------------------------------
33
+ ArrayChildrenTest: test_test_array_without_parent
34
+ -------------------------------------------------
35
+  (0.1ms) rollback transaction
36
+  (1.2ms) begin transaction
37
+ ----------------------------------------------
38
+ ArrayChildrenTest: test_test_array_with_parent
39
+ ----------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+ -------------------------------------------------
43
+ ArrayChildrenTest: test_test_array_without_parent
44
+ -------------------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (1.6ms) begin transaction
47
+ ----------------------------------------------
48
+ ArrayChildrenTest: test_test_array_with_parent
49
+ ----------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ -------------------------------------------------
53
+ ArrayChildrenTest: test_test_array_without_parent
54
+ -------------------------------------------------
55
+  (0.0ms) rollback transaction
56
+  (1.2ms) begin transaction
57
+ ----------------------------------------------
58
+ ArrayChildrenTest: test_test_array_with_parent
59
+ ----------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ -------------------------------------------------
63
+ ArrayChildrenTest: test_test_array_without_parent
64
+ -------------------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (1.2ms) begin transaction
67
+ ----------------------------------------------
68
+ ArrayChildrenTest: test_test_array_with_parent
69
+ ----------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ -------------------------------------------------
73
+ ArrayChildrenTest: test_test_array_without_parent
74
+ -------------------------------------------------
75
+  (0.0ms) rollback transaction
76
+  (1.8ms) begin transaction
77
+ ----------------------------------------------
78
+ ArrayChildrenTest: test_test_array_with_parent
79
+ ----------------------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+ -------------------------------------------------
83
+ ArrayChildrenTest: test_test_array_without_parent
84
+ -------------------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (1.3ms) begin transaction
87
+ ----------------------------------------------
88
+ ArrayChildrenTest: test_test_array_with_parent
89
+ ----------------------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.0ms) begin transaction
92
+ -------------------------------------------------
93
+ ArrayChildrenTest: test_test_array_without_parent
94
+ -------------------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (1.1ms) begin transaction
97
+ ----------------------------------------------
98
+ ArrayChildrenTest: test_test_array_with_parent
99
+ ----------------------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ -------------------------------------------------
103
+ ArrayChildrenTest: test_test_array_without_parent
104
+ -------------------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (1.3ms) begin transaction
107
+ ----------------------------------------------
108
+ ArrayChildrenTest: test_test_array_with_parent
109
+ ----------------------------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ -------------------------------------------------
113
+ ArrayChildrenTest: test_test_array_without_parent
114
+ -------------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (1.3ms) begin transaction
117
+ ----------------------------------------------
118
+ ArrayChildrenTest: test_test_array_with_parent
119
+ ----------------------------------------------
120
+  (0.0ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ -------------------------------------------------
123
+ ArrayChildrenTest: test_test_array_without_parent
124
+ -------------------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (1.3ms) begin transaction
127
+ ----------------------------------------------
128
+ ArrayChildrenTest: test_test_array_with_parent
129
+ ----------------------------------------------
130
+  (0.0ms) rollback transaction
131
+  (0.0ms) begin transaction
132
+ -------------------------------------------------
133
+ ArrayChildrenTest: test_test_array_without_parent
134
+ -------------------------------------------------
135
+  (0.1ms) rollback transaction
136
+  (1.2ms) begin transaction
137
+ ----------------------------------------------
138
+ ArrayChildrenTest: test_test_array_with_parent
139
+ ----------------------------------------------
140
+  (0.0ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+ -------------------------------------------------
143
+ ArrayChildrenTest: test_test_array_without_parent
144
+ -------------------------------------------------
145
+  (0.1ms) rollback transaction
146
+  (1.3ms) begin transaction
147
+ ----------------------------------------------
148
+ ArrayChildrenTest: test_test_array_with_parent
149
+ ----------------------------------------------
150
+  (0.0ms) rollback transaction
151
+  (0.0ms) begin transaction
152
+ -------------------------------------------------
153
+ ArrayChildrenTest: test_test_array_without_parent
154
+ -------------------------------------------------
155
+  (0.1ms) rollback transaction
156
+  (1.1ms) begin transaction
157
+ ----------------------------------------------
158
+ ArrayChildrenTest: test_test_array_with_parent
159
+ ----------------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ -------------------------------------------------
163
+ ArrayChildrenTest: test_test_array_without_parent
164
+ -------------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (1.9ms) begin transaction
167
+ ----------------------------------------------
168
+ ArrayChildrenTest: test_test_array_with_parent
169
+ ----------------------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ -------------------------------------------------
173
+ ArrayChildrenTest: test_test_array_without_parent
174
+ -------------------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (1.2ms) begin transaction
177
+ ----------------------------------------------
178
+ ArrayChildrenTest: test_test_array_with_parent
179
+ ----------------------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+ -------------------------------------------------
183
+ ArrayChildrenTest: test_test_array_without_parent
184
+ -------------------------------------------------
185
+  (0.2ms) rollback transaction
186
+  (1.4ms) begin transaction
187
+ ----------------------------------------------
188
+ ArrayChildrenTest: test_test_array_with_parent
189
+ ----------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ -------------------------------------------------
193
+ ArrayChildrenTest: test_test_array_without_parent
194
+ -------------------------------------------------
195
+  (0.2ms) rollback transaction
196
+  (1.4ms) begin transaction
197
+ ----------------------------------------------
198
+ ArrayChildrenTest: test_test_array_with_parent
199
+ ----------------------------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ -------------------------------------------------
203
+ ArrayChildrenTest: test_test_array_without_parent
204
+ -------------------------------------------------
205
+  (0.1ms) rollback transaction
206
+  (1.5ms) begin transaction
207
+ ----------------------------------------------
208
+ ArrayChildrenTest: test_test_array_with_parent
209
+ ----------------------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ -------------------------------------------------
213
+ ArrayChildrenTest: test_test_array_without_parent
214
+ -------------------------------------------------
215
+  (0.0ms) rollback transaction
216
+  (1.3ms) begin transaction
217
+ ----------------------------------------------
218
+ ArrayChildrenTest: test_test_array_with_parent
219
+ ----------------------------------------------
220
+  (0.1ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+ -------------------------------------------------
223
+ ArrayChildrenTest: test_test_array_without_parent
224
+ -------------------------------------------------
225
+  (0.0ms) rollback transaction
226
+  (1.3ms) begin transaction
227
+ ----------------------------------------------
228
+ ArrayChildrenTest: test_test_array_with_parent
229
+ ----------------------------------------------
230
+  (0.1ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ -------------------------------------------------
233
+ ArrayChildrenTest: test_test_array_without_parent
234
+ -------------------------------------------------
235
+  (0.1ms) rollback transaction
236
+  (1.2ms) begin transaction
237
+ ----------------------------------------------
238
+ ArrayChildrenTest: test_test_array_with_parent
239
+ ----------------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ -------------------------------------------------
243
+ ArrayChildrenTest: test_test_array_without_parent
244
+ -------------------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (1.2ms) begin transaction
247
+ ----------------------------------------------
248
+ ArrayChildrenTest: test_test_array_with_parent
249
+ ----------------------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ -------------------------------------------------
253
+ ArrayChildrenTest: test_test_array_without_parent
254
+ -------------------------------------------------
255
+  (0.1ms) rollback transaction
256
+  (1.5ms) begin transaction
257
+ ----------------------------------------------
258
+ ArrayChildrenTest: test_test_array_with_parent
259
+ ----------------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.0ms) begin transaction
262
+ -------------------------------------------------
263
+ ArrayChildrenTest: test_test_array_without_parent
264
+ -------------------------------------------------
265
+  (0.1ms) rollback transaction
266
+  (2.4ms) begin transaction
267
+ ----------------------------------------------
268
+ ArrayChildrenTest: test_test_array_with_parent
269
+ ----------------------------------------------
270
+  (0.1ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ -------------------------------------------------
273
+ ArrayChildrenTest: test_test_array_without_parent
274
+ -------------------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (1.5ms) begin transaction
277
+ ----------------------------------------------
278
+ ArrayChildrenTest: test_test_array_with_parent
279
+ ----------------------------------------------
280
+  (0.1ms) rollback transaction
281
+  (0.0ms) begin transaction
282
+ -------------------------------------------------
283
+ ArrayChildrenTest: test_test_array_without_parent
284
+ -------------------------------------------------
285
+  (0.0ms) rollback transaction
286
+  (1.4ms) begin transaction
287
+ -------------------------------------------------
288
+ ArrayChildrenTest: test_test_array_without_parent
289
+ -------------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (1.2ms) begin transaction
292
+ ----------------------------------------------
293
+ ArrayChildrenTest: test_test_array_with_parent
294
+ ----------------------------------------------
295
+  (0.1ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+ -------------------------------------------------
298
+ ArrayChildrenTest: test_test_array_without_parent
299
+ -------------------------------------------------
300
+  (0.1ms) rollback transaction
301
+  (1.2ms) begin transaction
302
+ ----------------------------------------------
303
+ ArrayChildrenTest: test_test_array_with_parent
304
+ ----------------------------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+ -------------------------------------------------
308
+ ArrayChildrenTest: test_test_array_without_parent
309
+ -------------------------------------------------
310
+  (0.1ms) rollback transaction
311
+  (1.3ms) begin transaction
312
+ ----------------------------------------------
313
+ ArrayChildrenTest: test_test_array_with_parent
314
+ ----------------------------------------------
315
+  (0.1ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+ -------------------------------------------------
318
+ ArrayChildrenTest: test_test_array_without_parent
319
+ -------------------------------------------------
320
+  (0.1ms) rollback transaction
321
+  (1.6ms) begin transaction
322
+ ----------------------------------------------
323
+ ArrayChildrenTest: test_test_array_with_parent
324
+ ----------------------------------------------
325
+  (0.1ms) rollback transaction
326
+  (0.0ms) begin transaction
327
+ -------------------------------------------------
328
+ ArrayChildrenTest: test_test_array_without_parent
329
+ -------------------------------------------------
330
+  (0.1ms) rollback transaction
331
+  (1.7ms) begin transaction
332
+ ----------------------------------------------
333
+ ArrayChildrenTest: test_test_array_with_parent
334
+ ----------------------------------------------
335
+  (0.1ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+ -------------------------------------------------
338
+ ArrayChildrenTest: test_test_array_without_parent
339
+ -------------------------------------------------
340
+  (0.1ms) rollback transaction
341
+  (1.4ms) begin transaction
342
+ ----------------------------------------------
343
+ ArrayChildrenTest: test_test_array_with_parent
344
+ ----------------------------------------------
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ -------------------------------------------------
348
+ ArrayChildrenTest: test_test_array_without_parent
349
+ -------------------------------------------------
350
+  (0.1ms) rollback transaction
351
+  (1.1ms) begin transaction
352
+ ----------------------------------------------
353
+ ArrayChildrenTest: test_test_array_with_parent
354
+ ----------------------------------------------
355
+  (0.1ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+ -------------------------------------------------
358
+ ArrayChildrenTest: test_test_array_without_parent
359
+ -------------------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (1.8ms) begin transaction
362
+ ----------------------------------------------
363
+ ArrayChildrenTest: test_test_array_with_parent
364
+ ----------------------------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+ -------------------------------------------------
368
+ ArrayChildrenTest: test_test_array_without_parent
369
+ -------------------------------------------------
370
+  (0.1ms) rollback transaction
371
+  (1.6ms) begin transaction
372
+ ------------------------------------------
373
+ ArrayTreeTest: test_test_array_with_parent
374
+ ------------------------------------------
375
+  (0.0ms) rollback transaction
376
+  (0.0ms) begin transaction
377
+ ---------------------------------------------
378
+ ArrayTreeTest: test_test_array_without_parent
379
+ ---------------------------------------------
380
+  (0.1ms) rollback transaction
381
+  (1.3ms) begin transaction
382
+ ------------------------------------------
383
+ ArrayTreeTest: test_test_array_with_parent
384
+ ------------------------------------------
385
+  (0.1ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ---------------------------------------------
388
+ ArrayTreeTest: test_test_array_without_parent
389
+ ---------------------------------------------
390
+  (0.1ms) rollback transaction
391
+  (1.2ms) begin transaction
392
+ ------------------------------------------
393
+ ArrayTreeTest: test_test_array_with_parent
394
+ ------------------------------------------
395
+  (0.0ms) rollback transaction
396
+  (0.2ms) begin transaction
397
+ ---------------------------------------------
398
+ ArrayTreeTest: test_test_array_without_parent
399
+ ---------------------------------------------
400
+  (0.1ms) rollback transaction
401
+  (2.0ms) begin transaction
402
+ ------------------------------------------
403
+ ArrayTreeTest: test_test_array_with_parent
404
+ ------------------------------------------
405
+  (0.1ms) rollback transaction
406
+  (0.1ms) begin transaction
407
+ ---------------------------------------------
408
+ ArrayTreeTest: test_test_array_without_parent
409
+ ---------------------------------------------
410
+  (0.1ms) rollback transaction
411
+  (1.0ms) begin transaction
412
+ ------------------------------------------
413
+ ArrayTreeTest: test_test_array_with_parent
414
+ ------------------------------------------
415
+  (0.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ ---------------------------------------------
418
+ ArrayTreeTest: test_test_array_without_parent
419
+ ---------------------------------------------
420
+  (0.1ms) rollback transaction
421
+  (1.6ms) begin transaction
422
+ ------------------------------------------
423
+ ArrayTreeTest: test_test_array_with_parent
424
+ ------------------------------------------
425
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ ---------------------------------------------
428
+ ArrayTreeTest: test_test_array_without_parent
429
+ ---------------------------------------------
430
+  (0.1ms) rollback transaction
431
+  (1.8ms) begin transaction
432
+ ------------------------------------------
433
+ ArrayTreeTest: test_test_array_with_parent
434
+ ------------------------------------------
435
+  (0.1ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+ ---------------------------------------------
438
+ ArrayTreeTest: test_test_array_without_parent
439
+ ---------------------------------------------
440
+  (0.0ms) rollback transaction
441
+  (1.1ms) begin transaction
442
+ ------------------------------------------
443
+ ArrayTreeTest: test_test_array_with_parent
444
+ ------------------------------------------
445
+  (0.0ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ ---------------------------------------------
448
+ ArrayTreeTest: test_test_array_without_parent
449
+ ---------------------------------------------
450
+  (0.1ms) rollback transaction
451
+  (1.2ms) begin transaction
452
+ ------------------------------------------
453
+ ArrayTreeTest: test_test_array_with_parent
454
+ ------------------------------------------
455
+  (0.0ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ ---------------------------------------------
458
+ ArrayTreeTest: test_test_array_without_parent
459
+ ---------------------------------------------
460
+  (0.1ms) rollback transaction
461
+  (1.6ms) begin transaction
462
+ ------------------------------------------
463
+ ArrayTreeTest: test_test_array_with_parent
464
+ ------------------------------------------
465
+  (0.0ms) rollback transaction
466
+  (0.0ms) begin transaction
467
+ ---------------------------------------------
468
+ ArrayTreeTest: test_test_array_without_parent
469
+ ---------------------------------------------
470
+  (0.1ms) rollback transaction
471
+  (1.2ms) begin transaction
472
+ ------------------------------------------
473
+ ArrayTreeTest: test_test_array_with_parent
474
+ ------------------------------------------
475
+  (0.0ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+ ---------------------------------------------
478
+ ArrayTreeTest: test_test_array_without_parent
479
+ ---------------------------------------------
480
+  (0.0ms) rollback transaction
481
+  (1.3ms) begin transaction
482
+ ----------------------------------------------
483
+ ArrayTreeTest: test_test_array_with_custom_key
484
+ ----------------------------------------------
485
+  (0.0ms) rollback transaction
486
+  (0.0ms) begin transaction
487
+ ------------------------------------------
488
+ ArrayTreeTest: test_test_array_with_parent
489
+ ------------------------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.0ms) begin transaction
492
+ ---------------------------------------------
493
+ ArrayTreeTest: test_test_array_without_parent
494
+ ---------------------------------------------
495
+  (0.0ms) rollback transaction
496
+  (1.0ms) begin transaction
497
+ ----------------------------------------------
498
+ ArrayTreeTest: test_test_array_with_custom_key
499
+ ----------------------------------------------
500
+  (0.1ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+ ------------------------------------------
503
+ ArrayTreeTest: test_test_array_with_parent
504
+ ------------------------------------------
505
+  (0.0ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ ---------------------------------------------
508
+ ArrayTreeTest: test_test_array_without_parent
509
+ ---------------------------------------------
510
+  (0.0ms) rollback transaction
511
+  (1.9ms) begin transaction
512
+ ------------------------------------------------------
513
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
514
+ ------------------------------------------------------
515
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ -----------------------------------------------
518
+ ArrayTreeTest: test_test_array_with_custom_keys
519
+ -----------------------------------------------
520
+  (0.1ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ ------------------------------------------
523
+ ArrayTreeTest: test_test_array_with_parent
524
+ ------------------------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ ---------------------------------------------
528
+ ArrayTreeTest: test_test_array_without_parent
529
+ ---------------------------------------------
530
+  (0.1ms) rollback transaction
531
+  (1.9ms) begin transaction
532
+ ------------------------------------------------------
533
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
534
+ ------------------------------------------------------
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ -----------------------------------------------
538
+ ArrayTreeTest: test_test_array_with_custom_keys
539
+ -----------------------------------------------
540
+  (0.1ms) rollback transaction
541
+  (0.0ms) begin transaction
542
+ ------------------------------------------
543
+ ArrayTreeTest: test_test_array_with_parent
544
+ ------------------------------------------
545
+  (0.1ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+ ---------------------------------------------
548
+ ArrayTreeTest: test_test_array_without_parent
549
+ ---------------------------------------------
550
+  (0.1ms) rollback transaction
551
+  (1.6ms) begin transaction
552
+ ------------------------------------------------------
553
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
554
+ ------------------------------------------------------
555
+  (0.1ms) rollback transaction
556
+  (0.0ms) begin transaction
557
+ -----------------------------------------------
558
+ ArrayTreeTest: test_test_array_with_custom_keys
559
+ -----------------------------------------------
560
+  (0.0ms) rollback transaction
561
+  (0.1ms) begin transaction
562
+ ------------------------------------------
563
+ ArrayTreeTest: test_test_array_with_parent
564
+ ------------------------------------------
565
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+ ---------------------------------------------
568
+ ArrayTreeTest: test_test_array_without_parent
569
+ ---------------------------------------------
570
+  (0.1ms) rollback transaction
571
+  (1.4ms) begin transaction
572
+ ------------------------------------------------------
573
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
574
+ ------------------------------------------------------
575
+  (0.0ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ -----------------------------------------------
578
+ ArrayTreeTest: test_test_array_with_custom_keys
579
+ -----------------------------------------------
580
+  (0.0ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ ------------------------------------------
583
+ ArrayTreeTest: test_test_array_with_parent
584
+ ------------------------------------------
585
+  (0.0ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+ ---------------------------------------------
588
+ ArrayTreeTest: test_test_array_without_parent
589
+ ---------------------------------------------
590
+  (0.1ms) rollback transaction
591
+  (2.0ms) begin transaction
592
+ ------------------------------------------------------
593
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
594
+ ------------------------------------------------------
595
+  (0.0ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+ -----------------------------------------------
598
+ ArrayTreeTest: test_test_array_with_custom_keys
599
+ -----------------------------------------------
600
+  (0.1ms) rollback transaction
601
+  (0.0ms) begin transaction
602
+ ------------------------------------------
603
+ ArrayTreeTest: test_test_array_with_parent
604
+ ------------------------------------------
605
+  (0.1ms) rollback transaction
606
+  (0.1ms) begin transaction
607
+ ---------------------------------------------
608
+ ArrayTreeTest: test_test_array_without_parent
609
+ ---------------------------------------------
610
+  (0.1ms) rollback transaction
611
+  (1.8ms) begin transaction
612
+ ------------------------------------------------------
613
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
614
+ ------------------------------------------------------
615
+  (0.1ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ -----------------------------------------------
618
+ ArrayTreeTest: test_test_array_with_custom_keys
619
+ -----------------------------------------------
620
+  (0.0ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+ ------------------------------------------
623
+ ArrayTreeTest: test_test_array_with_parent
624
+ ------------------------------------------
625
+  (0.0ms) rollback transaction
626
+  (0.0ms) begin transaction
627
+ ---------------------------------------------
628
+ ArrayTreeTest: test_test_array_without_parent
629
+ ---------------------------------------------
630
+  (0.1ms) rollback transaction
631
+  (1.1ms) begin transaction
632
+ ------------------------------------------------------
633
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
634
+ ------------------------------------------------------
635
+  (0.0ms) rollback transaction
636
+  (0.2ms) begin transaction
637
+ -----------------------------------------------
638
+ ArrayTreeTest: test_test_array_with_custom_keys
639
+ -----------------------------------------------
640
+  (0.1ms) rollback transaction
641
+  (0.0ms) begin transaction
642
+ ------------------------------------------
643
+ ArrayTreeTest: test_test_array_with_parent
644
+ ------------------------------------------
645
+  (0.0ms) rollback transaction
646
+  (0.1ms) begin transaction
647
+ ---------------------------------------------
648
+ ArrayTreeTest: test_test_array_without_parent
649
+ ---------------------------------------------
650
+  (0.1ms) rollback transaction
651
+  (1.1ms) begin transaction
652
+ ------------------------------------------------------
653
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
654
+ ------------------------------------------------------
655
+  (0.1ms) rollback transaction
656
+  (0.0ms) begin transaction
657
+ -----------------------------------------------
658
+ ArrayTreeTest: test_test_array_with_custom_keys
659
+ -----------------------------------------------
660
+  (0.1ms) rollback transaction
661
+  (0.0ms) begin transaction
662
+ ------------------------------------------
663
+ ArrayTreeTest: test_test_array_with_parent
664
+ ------------------------------------------
665
+  (0.1ms) rollback transaction
666
+  (0.0ms) begin transaction
667
+ ---------------------------------------------
668
+ ArrayTreeTest: test_test_array_without_parent
669
+ ---------------------------------------------
670
+  (0.0ms) rollback transaction
671
+  (1.7ms) begin transaction
672
+ ------------------------------------------------------
673
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
674
+ ------------------------------------------------------
675
+  (0.1ms) rollback transaction
676
+  (0.0ms) begin transaction
677
+ -----------------------------------------------
678
+ ArrayTreeTest: test_test_array_with_custom_keys
679
+ -----------------------------------------------
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+ ------------------------------------------
683
+ ArrayTreeTest: test_test_array_with_parent
684
+ ------------------------------------------
685
+  (0.0ms) rollback transaction
686
+  (0.0ms) begin transaction
687
+ ---------------------------------------------
688
+ ArrayTreeTest: test_test_array_without_parent
689
+ ---------------------------------------------
690
+  (0.0ms) rollback transaction
691
+  (1.6ms) begin transaction
692
+ ------------------------------------------------------
693
+ ArrayTreeTest: test_test_array_with_custom_foreign_key
694
+ ------------------------------------------------------
695
+  (0.0ms) rollback transaction
696
+  (0.0ms) begin transaction
697
+ -----------------------------------------------
698
+ ArrayTreeTest: test_test_array_with_custom_keys
699
+ -----------------------------------------------
700
+  (0.1ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+ ------------------------------------------
703
+ ArrayTreeTest: test_test_array_with_parent
704
+ ------------------------------------------
705
+  (0.0ms) rollback transaction
706
+  (0.0ms) begin transaction
707
+ ---------------------------------------------
708
+ ArrayTreeTest: test_test_array_without_parent
709
+ ---------------------------------------------
710
+  (0.0ms) rollback transaction