sproutcore 1.10.3.1 → 1.11.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (380) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG +4 -8
  3. data/VERSION.yml +2 -2
  4. data/lib/frameworks/sproutcore/Buildfile +5 -4
  5. data/lib/frameworks/sproutcore/CHANGELOG.md +274 -40
  6. data/lib/frameworks/sproutcore/CONTRIBUTORS.md +133 -0
  7. data/lib/frameworks/sproutcore/README.md +31 -144
  8. data/lib/frameworks/sproutcore/apps/showcase/controllers/source_tree_controller.js +9 -4
  9. data/lib/frameworks/sproutcore/apps/showcase/resources/stylesheet.css +5 -0
  10. data/lib/frameworks/sproutcore/apps/showcase/system/views_item_content.js +1 -1
  11. data/lib/frameworks/sproutcore/apps/showcase/views/split_views.js +15 -2
  12. data/lib/frameworks/sproutcore/apps/showcase/views/stacked_views.js +1 -1
  13. data/lib/frameworks/sproutcore/apps/tests/english.lproj/main_page.js +11 -1
  14. data/lib/frameworks/sproutcore/frameworks/ajax/mixins/websocket_delegate.js +90 -0
  15. data/lib/frameworks/sproutcore/frameworks/ajax/system/request.js +81 -5
  16. data/lib/frameworks/sproutcore/frameworks/ajax/system/response.js +23 -4
  17. data/lib/frameworks/sproutcore/frameworks/ajax/system/websocket.js +475 -0
  18. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/request.js +149 -26
  19. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/websocket.js +197 -0
  20. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/xhr_response_test.js +65 -0
  21. data/lib/frameworks/sproutcore/frameworks/bootstrap/system/loader.js +4 -0
  22. data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/horizontal_stack_layout.js +232 -52
  23. data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/vertical_stack_layout.js +235 -49
  24. data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/array.js +23 -13
  25. data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/object.js +3 -1
  26. data/lib/frameworks/sproutcore/frameworks/core_foundation/core.js +81 -1
  27. data/lib/frameworks/sproutcore/frameworks/core_foundation/english.lproj/ordinal.js +17 -0
  28. data/lib/frameworks/sproutcore/frameworks/core_foundation/ext/string.js +7 -0
  29. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/views/disclosure/methods.js → core_foundation/french.lproj/ordinal.js} +7 -4
  30. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/layout.js +2 -6
  31. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/main.js +1 -1
  32. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane.js +104 -69
  33. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane_statechart.js +6 -1
  34. data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/child_view_layout_protocol.js +59 -0
  35. data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/view_transition_protocol.js +18 -1
  36. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/application.js +192 -0
  37. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/bezier_curves.js +52 -0
  38. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/color.js +384 -64
  39. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/core_query.js +6 -14
  40. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/device.js +21 -35
  41. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/event.js +72 -36
  42. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/locale.js +90 -34
  43. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/platform.js +55 -7
  44. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/render_context.js +20 -15
  45. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/req_anim_frame.js +9 -10
  46. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/root_responder.js +763 -542
  47. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/selection_set.js +4 -3
  48. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/sparse_array.js +1 -7
  49. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/string.js +14 -0
  50. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/touch.js +538 -0
  51. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/utils/rect.js +56 -1
  52. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/array/array_case.js +99 -4
  53. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/object/single_case.js +25 -19
  54. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/core_tests.js +75 -0
  55. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/ext/number_test.js +81 -0
  56. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/action_support.js +4 -4
  57. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/responder_context.js +4 -4
  58. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/string.js +19 -1
  59. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/color.js +36 -20
  60. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/design_modes_test.js +83 -0
  61. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/makeMainPane.js +7 -3
  62. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/mouse_events.js +338 -0
  63. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/root_responder.js +14 -89
  64. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/touch.js +106 -0
  65. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/sparse_array.js +2 -2
  66. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/touch.js +136 -0
  67. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/utils/rect.js +42 -1
  68. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/append_remove.js +11 -0
  69. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/child_view.js +5 -5
  70. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/design_mode_test.js +457 -0
  71. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/sendEvent.js +36 -10
  72. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/background_color.js +44 -0
  73. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/border_frame_test.js +51 -24
  74. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/childViewLayout_test.js +176 -1
  75. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/clippingFrame.js +46 -16
  76. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/convertFrames.js +69 -15
  77. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/didAppendToDocument.js +2 -2
  78. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layout.js +7 -1
  79. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutDidChange.js +30 -10
  80. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutStyle.js +376 -71
  81. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/static_layout.js +0 -10
  82. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/viewDidResize.js +117 -34
  83. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/view_states_test.js +52 -2
  84. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view.js +656 -42
  85. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/animation.js +159 -38
  86. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/cursor.js +0 -7
  87. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/design_mode.js +206 -0
  88. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/enabled.js +0 -28
  89. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/keyboard.js +21 -6
  90. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout.js +372 -450
  91. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout_style.js +28 -13
  92. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/manipulation.js +22 -51
  93. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/statechart.js +59 -30
  94. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/theming.js +0 -29
  95. data/lib/frameworks/sproutcore/frameworks/datastore/mixins/relationship_support.js +22 -10
  96. data/lib/frameworks/sproutcore/frameworks/datastore/models/children_attribute.js +42 -36
  97. data/lib/frameworks/sproutcore/frameworks/datastore/models/many_attribute.js +54 -3
  98. data/lib/frameworks/sproutcore/frameworks/datastore/models/record.js +178 -59
  99. data/lib/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +2 -2
  100. data/lib/frameworks/sproutcore/frameworks/datastore/system/child_array.js +206 -132
  101. data/lib/frameworks/sproutcore/frameworks/datastore/system/many_array.js +214 -118
  102. data/lib/frameworks/sproutcore/frameworks/datastore/system/nested_store.js +96 -13
  103. data/lib/frameworks/sproutcore/frameworks/datastore/system/query.js +14 -4
  104. data/lib/frameworks/sproutcore/frameworks/datastore/system/record_array.js +82 -42
  105. data/lib/frameworks/sproutcore/frameworks/datastore/system/store.js +272 -177
  106. data/lib/frameworks/sproutcore/frameworks/datastore/tests/integration/store_interaction_test.js +54 -0
  107. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/datetime_recordattribute.js +24 -16
  108. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/many_attribute.js +6 -3
  109. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/data_store.js +267 -35
  110. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record.js +57 -46
  111. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array.js +150 -53
  112. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array_complex.js +57 -17
  113. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_complex.js +13 -9
  114. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/many.js +2 -2
  115. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/simple.js +0 -0
  116. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/single.js +12 -2
  117. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record/writeAttribute.js +20 -15
  118. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +9 -2
  119. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/many_array/core_methods.js +80 -14
  120. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_dataSourceCallbacks.js +280 -0
  121. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_pushChanges.js +232 -0
  122. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/chain.js +31 -5
  123. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/query/parse.js +16 -2
  124. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/core_methods.js +60 -40
  125. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/materializeRecord.js +78 -0
  126. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/system/datetime.js +13 -1
  127. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/tests/system/datetime.js +20 -0
  128. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/{resources → english.lproj}/strings.js +0 -0
  129. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/french.lproj/strings.js +45 -0
  130. data/lib/frameworks/sproutcore/frameworks/designer/designers/object_designer.js +7 -3
  131. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_row_delegate.js +125 -44
  132. data/lib/frameworks/sproutcore/frameworks/desktop/panes/alert.js +139 -48
  133. data/lib/frameworks/sproutcore/frameworks/desktop/panes/draggable.js +202 -0
  134. data/lib/frameworks/sproutcore/frameworks/desktop/panes/menu.js +59 -56
  135. data/lib/frameworks/sproutcore/frameworks/desktop/panes/palette.js +13 -49
  136. data/lib/frameworks/sproutcore/frameworks/desktop/panes/picker.js +466 -305
  137. data/lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_source.js +49 -12
  138. data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/slider.js +79 -21
  139. data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/split.js +12 -2
  140. data/lib/frameworks/sproutcore/frameworks/desktop/resources/menu_item_view.css +8 -0
  141. data/lib/frameworks/sproutcore/frameworks/desktop/resources/overlay-scroller.css +187 -0
  142. data/lib/frameworks/sproutcore/frameworks/desktop/system/drag.js +94 -30
  143. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/alert/ui.js +163 -3
  144. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/methods.js +97 -78
  145. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/ui.js +61 -1
  146. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/methods.js +7 -3
  147. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/ui.js +47 -22
  148. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/methods.js +66 -9
  149. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/ui.js +21 -11
  150. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/ui.js +12 -18
  151. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +17 -14
  152. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/ui.js +2 -1
  153. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/methods.js +9 -6
  154. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/collection_fast_path.js +54 -21
  155. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/content.js +52 -20
  156. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/itemViewForContentIndex.js +94 -4
  157. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/keyboard.js +177 -0
  158. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/layerIdFor.js +13 -1
  159. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/length.js +9 -9
  160. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/mouse.js +18 -0
  161. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/date_field/methods.js +104 -0
  162. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/disclosure/ui.js +48 -49
  163. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/drag_and_drop.js +22 -18
  164. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/methods.js +17 -5
  165. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/link_view_test.js +136 -0
  166. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/contentIndexesInRect.js +77 -0
  167. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/drag_and_drop.js +53 -16
  168. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/layoutForContentIndex.js +41 -0
  169. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowDelegate.js +25 -25
  170. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowOffsetForContentIndex.js +102 -27
  171. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/{rowHeightForContentIndex.js → rowSizeForContentIndex.js} +7 -6
  172. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_outline.js +2 -0
  173. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_row_heights.js +70 -75
  174. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_simple.js +29 -30
  175. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list_item.js +57 -0
  176. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/menu_scroll_view/menu_scroll_view_test.js +206 -0
  177. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/progress/ui.js +15 -0
  178. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +15 -7
  179. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/integration.js +16 -11
  180. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/methods.js +164 -12
  181. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/scale.js +387 -0
  182. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/touch.js +549 -0
  183. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/ui.js +214 -45
  184. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroller.js +5 -5
  185. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/methods.js +73 -22
  186. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/ui.js +88 -3
  187. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select/methods.js +8 -0
  188. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/methods.js +16 -1
  189. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/ui.js +54 -0
  190. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/split/dividers.js +21 -2
  191. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/static_content.js +31 -25
  192. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/tab/methods.js +109 -29
  193. data/lib/frameworks/sproutcore/frameworks/desktop/views/button.js +10 -1
  194. data/lib/frameworks/sproutcore/frameworks/desktop/views/checkbox.js +3 -0
  195. data/lib/frameworks/sproutcore/frameworks/desktop/views/collection.js +779 -603
  196. data/lib/frameworks/sproutcore/frameworks/desktop/views/date_field.js +106 -7
  197. data/lib/frameworks/sproutcore/frameworks/desktop/views/link_view.js +406 -0
  198. data/lib/frameworks/sproutcore/frameworks/desktop/views/list.js +437 -245
  199. data/lib/frameworks/sproutcore/frameworks/desktop/views/list_item.js +13 -0
  200. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +124 -62
  201. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroll.js +176 -597
  202. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroller_view.js +206 -0
  203. data/lib/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +3 -0
  204. data/lib/frameworks/sproutcore/frameworks/desktop/views/progress.js +5 -4
  205. data/lib/frameworks/sproutcore/frameworks/desktop/views/radio.js +3 -0
  206. data/lib/frameworks/sproutcore/frameworks/desktop/views/scene.js +56 -158
  207. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll_view.js +2560 -0
  208. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroller.js +458 -242
  209. data/lib/frameworks/sproutcore/frameworks/desktop/views/segmented.js +117 -54
  210. data/lib/frameworks/sproutcore/frameworks/desktop/views/select.js +18 -12
  211. data/lib/frameworks/sproutcore/frameworks/desktop/views/slider.js +162 -34
  212. data/lib/frameworks/sproutcore/frameworks/desktop/views/split.js +30 -15
  213. data/lib/frameworks/sproutcore/frameworks/desktop/views/split_divider.js +33 -7
  214. data/lib/frameworks/sproutcore/frameworks/desktop/views/static_content.js +22 -2
  215. data/lib/frameworks/sproutcore/frameworks/desktop/views/tab.js +47 -22
  216. data/lib/frameworks/sproutcore/frameworks/experimental/Buildfile +0 -6
  217. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form.js +2 -1
  218. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form_row.js +21 -21
  219. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/ext/menu.js +14 -3
  220. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/mixins/select_view_menu.js +24 -10
  221. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/ext/menu_resizing.js +1 -1
  222. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/bindings.js +7 -4
  223. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/check_selected.js +7 -9
  224. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button/methods.js → experimental/frameworks/select_view/tests/views/select/method.js} +54 -76
  225. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/views/select/selected_item.js +35 -0
  226. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button → experimental/frameworks/select_view/tests/views/select}/ui.js +107 -36
  227. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/views/select.js +225 -66
  228. data/lib/frameworks/sproutcore/frameworks/foundation/controllers/tree.js +39 -38
  229. data/lib/frameworks/sproutcore/frameworks/foundation/core.js +5 -18
  230. data/lib/frameworks/sproutcore/frameworks/foundation/debug/control_test_pane.js +12 -0
  231. data/lib/frameworks/sproutcore/frameworks/foundation/english.lproj/inflections.js +84 -0
  232. data/lib/frameworks/sproutcore/frameworks/foundation/french.lproj/inflections.js +41 -0
  233. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_mixin.js +1 -0
  234. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_resize.js +7 -0
  235. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/content_display.js +3 -4
  236. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/flowed_layout.js +6 -2
  237. data/lib/frameworks/sproutcore/frameworks/foundation/private/tree_item_observer.js +408 -239
  238. data/lib/frameworks/sproutcore/frameworks/foundation/render_delegates/canvas_image.js +1 -1
  239. data/lib/frameworks/sproutcore/frameworks/foundation/resources/text_field.css +2 -1
  240. data/lib/frameworks/sproutcore/frameworks/foundation/spanish.lproj/inflections.js +38 -0
  241. data/lib/frameworks/sproutcore/frameworks/foundation/system/benchmark.js +104 -76
  242. data/lib/frameworks/sproutcore/frameworks/foundation/system/string.js +20 -94
  243. data/lib/frameworks/sproutcore/frameworks/foundation/system/text_selection.js +33 -22
  244. data/lib/frameworks/sproutcore/frameworks/foundation/system/undo_manager.js +475 -0
  245. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/auto_resize_test.js +163 -1
  246. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/flowed_layout/tests.js +41 -0
  247. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/staticLayout.js +2 -5
  248. data/lib/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/methods.js +268 -0
  249. data/lib/frameworks/sproutcore/frameworks/foundation/tests/system/undo_manager.js +231 -0
  250. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/container/ui.js +16 -0
  251. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/image/ui.js +27 -0
  252. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/methods.js +24 -0
  253. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js +135 -6
  254. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/fade_transition.js +6 -0
  255. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/pop_transition.js +7 -0
  256. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/scale_transition.js +6 -0
  257. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/slide_transition.js +4 -0
  258. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/swap_dissolve_transition.js +3 -1
  259. data/lib/frameworks/sproutcore/frameworks/foundation/validators/credit_card.js +21 -21
  260. data/lib/frameworks/sproutcore/frameworks/foundation/views/container.js +65 -15
  261. data/lib/frameworks/sproutcore/frameworks/foundation/views/image.js +4 -1
  262. data/lib/frameworks/sproutcore/frameworks/foundation/views/label.js +1 -1
  263. data/lib/frameworks/sproutcore/frameworks/foundation/views/text_field.js +193 -213
  264. data/lib/frameworks/sproutcore/frameworks/jquery/{jquery-1.8.3-patched.js → jquery-1.11.1.js} +7507 -6684
  265. data/lib/frameworks/sproutcore/frameworks/routing/system/routes.js +28 -11
  266. data/lib/frameworks/sproutcore/frameworks/routing/tests/system/routes.js +26 -0
  267. data/lib/frameworks/sproutcore/frameworks/runtime/core.js +54 -25
  268. data/lib/frameworks/sproutcore/frameworks/runtime/ext/array.js +0 -6
  269. data/lib/frameworks/sproutcore/frameworks/runtime/ext/number.js +36 -0
  270. data/lib/frameworks/sproutcore/frameworks/runtime/ext/window.js +25 -0
  271. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/array.js +3 -3
  272. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/enumerable.js +1 -1
  273. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +156 -66
  274. data/lib/frameworks/sproutcore/frameworks/runtime/private/observer_set.js +2 -2
  275. data/lib/frameworks/sproutcore/frameworks/runtime/system/binding.js +150 -65
  276. data/lib/frameworks/sproutcore/frameworks/runtime/system/index_set.js +57 -11
  277. data/lib/frameworks/sproutcore/frameworks/runtime/system/object.js +68 -49
  278. data/lib/frameworks/sproutcore/frameworks/runtime/system/run_loop.js +14 -6
  279. data/lib/frameworks/sproutcore/frameworks/runtime/system/string.js +23 -23
  280. data/lib/frameworks/sproutcore/frameworks/runtime/tests/ext/number_test.js +44 -0
  281. data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/array.js +0 -10
  282. data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/enumerable/enumerable.js +340 -285
  283. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/binding.js +104 -3
  284. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/observer_set.js +14 -1
  285. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/string.js +15 -2
  286. data/lib/frameworks/sproutcore/frameworks/statechart/system/state.js +21 -18
  287. data/lib/frameworks/sproutcore/frameworks/statechart/system/statechart.js +52 -19
  288. data/lib/frameworks/sproutcore/frameworks/statechart/tests/event_handling/responder/pane.js +27 -24
  289. data/lib/frameworks/sproutcore/frameworks/template_view/controls/button.js +30 -0
  290. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/bind.js +1 -1
  291. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/collection.js +2 -0
  292. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/view.js +1 -0
  293. data/lib/frameworks/sproutcore/frameworks/template_view/tests/mixins/template_helpers/checkbox_support.js +2 -2
  294. data/lib/frameworks/sproutcore/frameworks/template_view/tests/views/template/handlebars.js +4 -2
  295. data/lib/frameworks/sproutcore/frameworks/template_view/views/bindable_span.js +1 -1
  296. data/lib/frameworks/sproutcore/frameworks/template_view/views/template_collection.js +16 -14
  297. data/lib/frameworks/sproutcore/frameworks/testing/core.js +5 -3
  298. data/lib/frameworks/sproutcore/frameworks/testing/system/plan.js +13 -0
  299. data/lib/frameworks/sproutcore/lib/index.rhtml +2 -2
  300. data/lib/frameworks/sproutcore/phantomjs/test_runner.js +28 -7
  301. data/lib/frameworks/sproutcore/scripts/run_sc_server_master.sh +1 -1
  302. data/lib/frameworks/sproutcore/themes/ace/resources/_variables.css +2 -0
  303. data/lib/frameworks/sproutcore/themes/ace/resources/disclosure/ace/disclosure.css +1 -0
  304. data/lib/frameworks/sproutcore/themes/ace/resources/picker/popover/popover.css +3 -4
  305. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal.css +15 -15
  306. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_overlay.css +74 -0
  307. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical.css +11 -13
  308. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_overlay.css +74 -0
  309. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active.png +0 -0
  310. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active@2x.png +0 -0
  311. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob.png +0 -0
  312. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob@2x.png +0 -0
  313. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/{22px → jumbo}/slider.css +9 -4
  314. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track.png +0 -0
  315. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track@2x.png +0 -0
  316. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active.png +0 -0
  317. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active@2x.png +0 -0
  318. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob.png +0 -0
  319. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob@2x.png +0 -0
  320. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/slider.css +32 -0
  321. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track.png +0 -0
  322. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track@2x.png +0 -0
  323. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/slider.css +13 -0
  324. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active.png +0 -0
  325. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active@2x.png +0 -0
  326. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob.png +0 -0
  327. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob@2x.png +0 -0
  328. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/slider.css +32 -0
  329. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track.png +0 -0
  330. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track@2x.png +0 -0
  331. data/lib/frameworks/sproutcore/themes/ace/resources/split/split.css +2 -3
  332. data/lib/sproutcore/builders/chance_file.rb +3 -3
  333. data/lib/sproutcore/helpers/minifier.rb +1 -0
  334. data/vendor/chance/lib/chance/instance.rb +34 -34
  335. data/vendor/chance/lib/chance/instance/spriting.rb +21 -16
  336. metadata +81 -58
  337. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/visibility.js +0 -17
  338. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_fast_path.js +0 -710
  339. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/scrollable.js +0 -267
  340. data/lib/frameworks/sproutcore/frameworks/desktop/resources/touch-scroller.css +0 -196
  341. data/lib/frameworks/sproutcore/frameworks/desktop/system/undo_manager.js +0 -224
  342. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/methods.js +0 -163
  343. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/ui.js +0 -177
  344. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll.js +0 -2053
  345. data/lib/frameworks/sproutcore/frameworks/desktop/views/select_button.js +0 -1024
  346. data/lib/frameworks/sproutcore/frameworks/desktop/views/select_field.js +0 -404
  347. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/render_delegates/menu_scroller.js +0 -28
  348. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/tests/menu/scroll.js +0 -235
  349. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroll.js +0 -363
  350. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroller.js +0 -250
  351. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/README.md +0 -47
  352. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/models/record.js +0 -134
  353. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/desktop_scroller.js +0 -92
  354. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/native_scroll.js +0 -25
  355. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/scroll.js +0 -33
  356. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/touch_scroller.js +0 -76
  357. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/integration.js +0 -25
  358. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/methods.js +0 -143
  359. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/ui.js +0 -256
  360. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroll.js +0 -1164
  361. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroller.js +0 -332
  362. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroll.js +0 -236
  363. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroller.js +0 -347
  364. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroll.js +0 -15
  365. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroller.js +0 -10
  366. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroll.js +0 -804
  367. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroller.js +0 -133
  368. data/lib/frameworks/sproutcore/frameworks/foundation/tasks/preload_bundle.js +0 -41
  369. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_touch.css +0 -91
  370. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_touch.css +0 -92
  371. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob.png +0 -0
  372. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob_active.png +0 -0
  373. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/slider.css +0 -27
  374. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob.png +0 -0
  375. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob_active.png +0 -0
  376. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/slider.css +0 -27
  377. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob.png +0 -0
  378. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob_active.png +0 -0
  379. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/track.png +0 -0
  380. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/track.png +0 -0
@@ -3,6 +3,7 @@
3
3
  *
4
4
  * @author Evin Grano
5
5
  */
6
+ /* globals module, test, equals, same, ok */
6
7
 
7
8
  // ..........................................................
8
9
  // Basic Set up needs to move to the setup and teardown
@@ -179,7 +180,6 @@ test("Function: writeAttribute()", function() {
179
180
  });
180
181
 
181
182
  test("Basic Read", function() {
182
- var id;
183
183
  // Test general gets
184
184
  equals(testParent.get('name'), 'Parent Name', "get should be correct for name attribute");
185
185
  equals(testParent.get('nothing'), null, "get should be correct for invalid key");
@@ -209,7 +209,6 @@ test("Basic Read", function() {
209
209
  });
210
210
 
211
211
  test("Basic Read when Child Record has no primary key", function() {
212
- var id;
213
212
  // Test general gets
214
213
  equals(testParent3.get('name'), 'Parent Name 3', "get should be correct for name attribute");
215
214
  equals(testParent3.get('nothing'), null, "get should be correct for invalid key");
@@ -240,41 +239,43 @@ test("Basic Read when Child Record has no primary key", function() {
240
239
  test("Basic Write As a Hash", function() {
241
240
 
242
241
  // Test general gets
243
- testParent.set('name', 'New Parent Name');
244
- equals(testParent.get('name'), 'New Parent Name', "set() should change name attribute");
245
- testParent.set('nothing', 'nothing');
246
- equals(testParent.get('nothing'), 'nothing', "set should change non-existent property to a new property");
247
-
248
- // Test Child Record creation
249
- var oldCR = testParent.get('info');
250
- testParent.set('info', {
251
- type: 'ChildRecordTest',
252
- name: 'New Child Name',
253
- value: 'Red Goo',
254
- guid: '6001'
242
+ SC.run(function () {
243
+ testParent.set('name', 'New Parent Name');
244
+ equals(testParent.get('name'), 'New Parent Name', "set() should change name attribute");
245
+ testParent.set('nothing', 'nothing');
246
+ equals(testParent.get('nothing'), 'nothing', "set should change non-existent property to a new property");
247
+
248
+ // Test Child Record creation
249
+ var oldCR = testParent.get('info');
250
+ testParent.set('info', {
251
+ type: 'ChildRecordTest',
252
+ name: 'New Child Name',
253
+ value: 'Red Goo',
254
+ guid: '6001'
255
+ });
256
+ var cr = testParent.get('info');
257
+ // Check Model Class information
258
+ ok(SC.kindOf(cr, SC.Record), "set() with an object creates an actual instance that is a kind of a SC.Record Object");
259
+ ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest), "set() with an object creates an actual instance of a ChildRecordTest Object");
260
+
261
+ // Check reference information
262
+ var pm = cr.get('primaryKey');
263
+ var key = cr.get(pm);
264
+ var storeRef = store.find(NestedRecord.ChildRecordTest, key);
265
+ ok(storeRef, 'after a set() with an object, checking that the store has the instance of the child record with proper primary key');
266
+ equals(cr, storeRef, "after a set with an object, checking the parent reference is the same as the direct store reference");
267
+ var oldKey = oldCR.get(pm);
268
+ ok(oldKey !== key, 'check to see that the old child record has a different key from the new child record');
269
+
270
+ // Check for changes on the child bubble to the parent.
271
+ cr.set('name', 'Child Name Change');
272
+ equals(cr.get('name'), 'Child Name Change', "after a set('name', <new>) on child, checking that the value is updated");
273
+ ok(cr.get('status') & SC.Record.DIRTY, 'check that the child record is dirty');
274
+ ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
275
+ var newCR = testParent.get('info');
276
+ same(newCR, cr, "after a set('name', <new>) on child, checking to see that the parent has received the changes from the child record");
277
+ same(testParent.readAttribute('info'), cr.get('attributes'), "after a set('name', <new>) on child, readAttribute on the parent should be correct for info child attributes");
255
278
  });
256
- var cr = testParent.get('info');
257
- // Check Model Class information
258
- ok(SC.kindOf(cr, SC.Record), "set() with an object creates an actual instance that is a kind of a SC.Record Object");
259
- ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest), "set() with an object creates an actual instance of a ChildRecordTest Object");
260
-
261
- // Check reference information
262
- var pm = cr.get('primaryKey');
263
- var key = cr.get(pm);
264
- var storeRef = store.find(NestedRecord.ChildRecordTest, key);
265
- ok(storeRef, 'after a set() with an object, checking that the store has the instance of the child record with proper primary key');
266
- equals(cr, storeRef, "after a set with an object, checking the parent reference is the same as the direct store reference");
267
- var oldKey = oldCR.get(pm);
268
- ok(!(oldKey === key), 'check to see that the old child record has a different key from the new child record');
269
-
270
- // Check for changes on the child bubble to the parent.
271
- cr.set('name', 'Child Name Change');
272
- equals(cr.get('name'), 'Child Name Change', "after a set('name', <new>) on child, checking that the value is updated");
273
- ok(cr.get('status') & SC.Record.DIRTY, 'check that the child record is dirty');
274
- ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
275
- var newCR = testParent.get('info');
276
- same(newCR, cr, "after a set('name', <new>) on child, checking to see that the parent has received the changes from the child record");
277
- same(testParent.readAttribute('info'), cr.get('attributes'), "after a set('name', <new>) on child, readAttribute on the parent should be correct for info child attributes");
278
279
  });
279
280
 
280
281
  test("Basic Write As a Hash when Child Record has no primary key", function() {
@@ -287,6 +288,7 @@ test("Basic Write As a Hash when Child Record has no primary key", function() {
287
288
 
288
289
  // Test Child Record creation
289
290
  var oldCR = testParent3.get('info');
291
+ var oldKey = oldCR.get('id');
290
292
  testParent3.set('info', {
291
293
  type: 'ChildRecordTest',
292
294
  name: 'New Child Name',
@@ -302,8 +304,7 @@ test("Basic Write As a Hash when Child Record has no primary key", function() {
302
304
  var storeRef = store.find(NestedRecord.ChildRecordTest, key);
303
305
  ok(storeRef, 'after a set() with an object, checking that the store has the instance of the child record with proper primary key');
304
306
  equals(cr, storeRef, "after a set with an object, checking the parent reference is the same as the direct store reference");
305
- var oldKey = oldCR.get('id');
306
- ok((oldKey === key), 'check to see that the old child record has the same key as the new child record');
307
+ equals(oldKey, key, 'check to see that the old child record has the same key as the new child record');
307
308
 
308
309
  // Check for changes on the child bubble to the parent.
309
310
  cr.set('name', 'Child Name Change');
@@ -398,11 +399,14 @@ test("Basic Write As a Child Record when Child Record has no primary key", funct
398
399
 
399
400
  test("Writing over a child record should remove caches in the store.", function() {
400
401
  // Test Child Record creation
401
- var cr, key, store = testParent.get('store'), cacheLength;
402
+ var cr, key, store = testParent.get('store'), cacheLength, storeKeys = [], ids = [];
402
403
 
403
404
  // Get the child record once before setting it in order to test that this child
404
405
  // doesn't become abandoned in the store.
405
406
  cr = testParent.get('info');
407
+ storeKeys.push(cr.get('storeKey'));
408
+ ids.push(cr.get('id'));
409
+ ids = ids.uniq();
406
410
 
407
411
  // Once we get the child record, certain caches are created in the store.
408
412
  // Verify the cache lengths to prove that there are no leaked objects.
@@ -425,6 +429,9 @@ test("Writing over a child record should remove caches in the store.", function(
425
429
  // Overwrite the child record with a new child record with the same guid.
426
430
  testParent.set('info', {type: 'ChildRecordTest', name: 'New Child Name', value: 'Red Goo', guid: '5001'});
427
431
  cr = testParent.get('info');
432
+ storeKeys.push(cr.get('storeKey'));
433
+ ids.push(cr.get('id'));
434
+ ids = ids.uniq();
428
435
 
429
436
  // Verify the cache lengths to prove that there are no leaked objects.
430
437
  cacheLength = 0;
@@ -446,6 +453,9 @@ test("Writing over a child record should remove caches in the store.", function(
446
453
  // Overwrite the child record with a new child record with the same guid.
447
454
  testParent.set('info', store.createRecord(NestedRecord.ChildRecordTest, {type: 'ChildRecordTest', name: 'New Child Name', value: 'Orange Goo', guid: '6001'}));
448
455
  cr = testParent.get('info');
456
+ storeKeys.push(cr.get('storeKey'));
457
+ ids.push(cr.get('id'));
458
+ ids = ids.uniq();
449
459
 
450
460
  // Verify the cache lengths to prove that there are no leaked objects.
451
461
  cacheLength = 0;
@@ -568,7 +578,7 @@ test("Unloading the parent record also unloads the child record.", function() {
568
578
  duplicates of the child record.
569
579
  */
570
580
  test("Reloading the parent record uses same child record.", function() {
571
- var parentId, child, childId, parentStoreKey, childStoreKey, newChildStoreKey;
581
+ var parentId, child, childId, parentStoreKey, childStoreKey;
572
582
  var key, cacheLength;
573
583
 
574
584
  parentId = testParent3.get('id');
@@ -581,7 +591,7 @@ test("Reloading the parent record uses same child record.", function() {
581
591
  // Verify the cache lengths to prove that there are no leaked objects.
582
592
  cacheLength = 0;
583
593
  for (key in store.parentRecords) { cacheLength += 1; }
584
- equals(cacheLength, 1, 'there should only be one parent record registered in the store');
594
+ equals(cacheLength, 1, 'there should only be one parent record registered in the store initially');
585
595
 
586
596
  cacheLength = 0;
587
597
  for (key in store.childRecords) { cacheLength += 1; }
@@ -604,15 +614,15 @@ test("Reloading the parent record uses same child record.", function() {
604
614
  // Verify the cache lengths to prove that there are no leaked objects.
605
615
  cacheLength = 0;
606
616
  for (key in store.parentRecords) { cacheLength += 1; }
607
- equals(cacheLength, 1, 'there should only be one parent record registered in the store');
617
+ equals(cacheLength, 0, 'there should be no parent record registered in the store');
608
618
 
609
619
  cacheLength = 0;
610
620
  for (key in store.childRecords) { cacheLength += 1; }
611
- equals(cacheLength, 1, 'there should only be one child record registered in the store');
621
+ equals(cacheLength, 0, 'there should be zero child records registered in the store');
612
622
 
613
623
  cacheLength = 0;
614
624
  for (key in store.records) { cacheLength += 1; }
615
- equals(cacheLength, 4, 'there should be four records cached in the store');
625
+ equals(cacheLength, 2, 'there should be two records cached in the store');
616
626
 
617
627
  cacheLength = 0;
618
628
  for (key in store.dataHashes) { if (store.dataHashes[key] !== null) cacheLength += 1; }
@@ -620,7 +630,7 @@ test("Reloading the parent record uses same child record.", function() {
620
630
 
621
631
  // Reload the record
622
632
  SC.RunLoop.begin();
623
- store.loadRecord(NestedRecord.ParentRecordTest, {
633
+ parentStoreKey = store.loadRecord(NestedRecord.ParentRecordTest, {
624
634
  name: 'Parent Name 3',
625
635
  info: {
626
636
  type: 'ChildRecordTest',
@@ -631,6 +641,7 @@ test("Reloading the parent record uses same child record.", function() {
631
641
  parentId);
632
642
  SC.RunLoop.end();
633
643
 
644
+ testParent3 = store.materializeRecord(parentStoreKey);
634
645
  child = testParent3.get('info');
635
646
  equals(testParent3.get('status'), SC.Record.READY_CLEAN, 'parent status should be READY_CLEAN');
636
647
  equals(child.get('status'), SC.Record.READY_CLEAN, 'child status should be READY_CLEAN');
@@ -638,7 +649,7 @@ test("Reloading the parent record uses same child record.", function() {
638
649
  // Verify the cache lengths to prove that there are no leaked objects.
639
650
  cacheLength = 0;
640
651
  for (key in store.parentRecords) { cacheLength += 1; }
641
- equals(cacheLength, 1, 'there should only be one parent record registered in the store');
652
+ equals(cacheLength, 1, 'there should only be one parent record registered in the store after reload');
642
653
 
643
654
  cacheLength = 0;
644
655
  for (key in store.childRecords) { cacheLength += 1; }
@@ -1,3 +1,4 @@
1
+ /*global same, equals, test, module, ok */
1
2
  /**
2
3
  * Nested Record Array of SC.Records Unit Test
3
4
  *
@@ -9,7 +10,7 @@
9
10
  //
10
11
  var NestedRecord, store, testParent, testParent2;
11
12
 
12
- var initModels = function(){
13
+ var initModels = function() {
13
14
 
14
15
  NestedRecord.ChildRecordTest1 = SC.Record.extend({
15
16
  name: SC.Record.attr(String),
@@ -102,12 +103,16 @@ module("Basic SC.Record w/ a Parent > Array of Children", {
102
103
  },
103
104
 
104
105
  teardown: function() {
105
- delete NestedRecord.ParentRecordTest;
106
- delete NestedRecord.ChildRecordTest;
107
- testParent = null;
108
- testParent2 = null;
109
- store = null;
110
- NestedRecord = null;
106
+ SC.run(function () {
107
+ delete NestedRecord.ParentRecordTest;
108
+ delete NestedRecord.ChildRecordTest1;
109
+ delete NestedRecord.ChildRecordTest2;
110
+ testParent.destroy();
111
+ testParent2.destroy();
112
+ store.destroy();
113
+ });
114
+
115
+ testParent = testParent2 = store = NestedRecord = null;
111
116
  }
112
117
  });
113
118
 
@@ -133,25 +138,28 @@ test("Function: readAttribute()", function() {
133
138
 
134
139
  test("Function: writeAttribute()", function() {
135
140
 
136
- testParent.writeAttribute('elements',
137
- [
138
- {
139
- type: 'ChildRecordTest1',
140
- name: 'Tom',
141
- value: 'Jones'
142
- },
143
- {
144
- type: 'ChildRecordTest1',
145
- name: 'Dick',
146
- value: 'Smothers'
147
- },
148
- {
149
- type: 'ChildRecordTest1',
150
- name: 'Harry',
151
- value: 'Balls'
152
- }
153
- ]
154
- );
141
+ SC.run(function () {
142
+ testParent.writeAttribute('elements',
143
+ [
144
+ {
145
+ type: 'ChildRecordTest1',
146
+ name: 'Tom',
147
+ value: 'Jones'
148
+ },
149
+ {
150
+ type: 'ChildRecordTest1',
151
+ name: 'Dick',
152
+ value: 'Smothers'
153
+ },
154
+ {
155
+ type: 'ChildRecordTest1',
156
+ name: 'Harry',
157
+ value: 'Balls'
158
+ }
159
+ ]
160
+ );
161
+ });
162
+
155
163
  var elemsAry = testParent.readAttribute('elements');
156
164
  ok(elemsAry, "after writeAttribute(), check to see that the child records array exists");
157
165
  equals(elemsAry.length, 3, "after writeAttribute(), checking to see that the length of the elements array is 3");
@@ -181,9 +189,13 @@ test("Basic Read", function() {
181
189
  var arrayOfCRs = testParent.get('elements');
182
190
  // Check Model Class information
183
191
 
192
+ var cr, dr, dpr;
184
193
  ok(SC.instanceOf(arrayOfCRs, SC.ChildArray), "check that get() creates an actual instance of a SC.ChildArray");
185
194
  equals(arrayOfCRs.get('length'), 4, "check that the length of the array of child records is 4");
186
- var cr = arrayOfCRs.objectAt(0);
195
+ SC.run(function () {
196
+ cr = arrayOfCRs.objectAt(0);
197
+ });
198
+
187
199
  ok(SC.kindOf(cr, SC.Record), "check that first ChildRecord from the get() creates an actual instance that is a kind of a SC.Record Object");
188
200
  ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest1), "check that first ChildRecord from the get() creates an actual instance of a ChildRecordTest1 Object");
189
201
 
@@ -191,7 +203,9 @@ test("Basic Read", function() {
191
203
  var arrayOfDRs = testParent.get('defaultElements');
192
204
  ok(SC.instanceOf(arrayOfDRs, SC.ChildArray), "check that get() creates an actual instance of a SC.ChildArray");
193
205
  equals(arrayOfDRs.get('length'), 1, "check that the length of the array of default records is 1");
194
- var dr = arrayOfDRs.objectAt(0);
206
+ SC.run(function () {
207
+ dr = arrayOfDRs.objectAt(0);
208
+ });
195
209
  ok(SC.kindOf(dr, SC.Record), "check that first default ChildRecord from the get() creates an actual instance that is a kind of a SC.Record Object");
196
210
  ok(SC.instanceOf(dr, NestedRecord.ChildRecordTest1), "check that first default ChildRecord from the get() creates an actual instance of a ChildRecordTest1 Object");
197
211
 
@@ -199,7 +213,9 @@ test("Basic Read", function() {
199
213
  var arrayOfDPRs = testParent.get('defaultPolymorphicElements');
200
214
  ok(SC.instanceOf(arrayOfDPRs, SC.ChildArray), "check that get() creates an actual instance of a SC.ChildArray");
201
215
  equals(arrayOfDPRs.get('length'), 1, "check that the length of the array of default records is 1");
202
- var dpr = arrayOfDPRs.objectAt(0);
216
+ SC.run(function () {
217
+ dpr = arrayOfDPRs.objectAt(0);
218
+ });
203
219
  ok(SC.kindOf(dpr, SC.Record), "check that first default polymorphic ChildRecord from the get() creates an actual instance that is a kind of a SC.Record Object");
204
220
  ok(SC.instanceOf(dpr, NestedRecord.ChildRecordTest1), "check that first default polymorphic ChildRecord from the get() creates an actual instance of a ChildRecordTest1 Object");
205
221
 
@@ -229,9 +245,14 @@ test("Basic Read", function() {
229
245
  test("Basic Write", function() {
230
246
 
231
247
  // Test general gets
232
- testParent.set('name', 'New Parent Name');
248
+ SC.run(function () {
249
+ testParent.set('name', 'New Parent Name');
250
+ });
233
251
  equals(testParent.get('name'), 'New Parent Name', "set() should change name attribute");
234
- testParent.set('nothing', 'nothing');
252
+
253
+ SC.run(function () {
254
+ testParent.set('nothing', 'nothing');
255
+ });
235
256
  equals(testParent.get('nothing'), 'nothing', "set should change non-existent property to a new property");
236
257
 
237
258
  // Test Child Record creation
@@ -242,11 +263,17 @@ test("Basic Write", function() {
242
263
  { type: 'ChildRecordTest1', name: 'Harry', value: 'Balls'}
243
264
  ];
244
265
 
245
- testParent.set('elements', newChildren);
266
+ SC.run(function () {
267
+ testParent.set('elements', newChildren);
268
+ });
246
269
  var newArray = testParent.get('elements');
247
270
  ok(SC.instanceOf(newArray, SC.ChildArray), "check that get() creates an actual instance of a SC.ChildArray");
248
271
  equals(newArray.get('length'), 3, "after set() on parent, check that the length of the array of child records is 3");
249
- var cr = newArray.objectAt(0);
272
+
273
+ var cr;
274
+ SC.run(function () {
275
+ cr = newArray.objectAt(0);
276
+ });
250
277
 
251
278
  ok(SC.kindOf(cr, SC.Record), "check that first ChildRecord from the get() creates an actual instance that is a kind of a SC.Record Object");
252
279
  ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest1), "check that first ChildRecord from the get() creates an actual instance of a ChildRecordTest1 Object");
@@ -256,7 +283,9 @@ test("Basic Write: reference tests", function() {
256
283
  var elems, cr, key, storeRef, newElems;
257
284
 
258
285
  elems = testParent.get('elements');
259
- cr = elems.objectAt(0);
286
+ SC.run(function () {
287
+ cr = elems.objectAt(0);
288
+ });
260
289
  // TODO: [EG] Add test to make sure the number of ChildRecords in store
261
290
 
262
291
  // Check reference information
@@ -266,12 +295,18 @@ test("Basic Write: reference tests", function() {
266
295
  equals(cr, storeRef, "after a set with an object, checking the parent reference is the same as the direct store reference");
267
296
 
268
297
  // Check for changes on the child bubble to the parent.
269
- cr.set('name', 'Child Name Change');
298
+ SC.run(function () {
299
+ cr.set('name', 'Child Name Change');
300
+ });
270
301
  equals(cr.get('name'), 'Child Name Change', "after a set('name', <new>) on child, checking that the value is updated");
271
302
  ok(cr.get('status') & SC.Record.DIRTY, 'check that the child record is dirty');
272
303
  ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
273
304
  newElems = testParent.get('elements');
274
- var newCR = newElems.objectAt(0);
305
+ var newCR;
306
+
307
+ SC.run(function () {
308
+ newCR = newElems.objectAt(0);
309
+ });
275
310
  same(newCR, cr, "after a set('name', <new>) on child, checking to see that the parent has received the changes from the child record");
276
311
  var readAttrsArray = testParent.readAttribute('elements');
277
312
  ok(readAttrsArray, "checks to make sure the readAttibute works with a change to the name in the first child.");
@@ -287,7 +322,9 @@ test("Basic Array Functionality: pushObject w/ HASH", function() {
287
322
  elements.pushObject({ type: 'ChildRecordTest1', name: 'Testikles', value: 'God Of Fertility'});
288
323
  elements = testParent.get('elements');
289
324
  equals(elements.get('length'), 5, "after pushObject() on parent, check that the length of the array of child records is 5");
290
- cr = elements.objectAt(4);
325
+ SC.run(function () {
326
+ cr = elements.objectAt(4);
327
+ });
291
328
  ok(SC.kindOf(cr, SC.Record), "check that newly added ChildRecord creates an actual instance that is a kind of a SC.Record Object");
292
329
  ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest1), "check that newly added ChildRecord creates an actual instance of a ChildRecordTest1 Object");
293
330
  equals(cr.get('name'), 'Testikles', "after a pushObject on parent, check to see if it has all the right values for the attributes");
@@ -297,8 +334,11 @@ test("Basic Array Functionality: pushObject w/ HASH", function() {
297
334
  // Verify the Attrs
298
335
  elementsAttrs = testParent.readAttribute('elements');
299
336
  equals(elementsAttrs.length, 5, "after pushObject() on parent, check that the length of the attribute array of child records is 5");
300
- crFirst = elements.objectAt(0).get('attributes');
301
- crLast = elements.objectAt(4).get('attributes');
337
+
338
+ SC.run(function () {
339
+ crFirst = elements.objectAt(0).get('attributes');
340
+ crLast = elements.objectAt(4).get('attributes');
341
+ });
302
342
  same(elementsAttrs[0], crFirst, "verify that parent attributes are the same as the first individual child attributes");
303
343
  same(elementsAttrs[4], crLast, "verify that parent attributes are the same as the last individual child attributes");
304
344
  });
@@ -308,11 +348,16 @@ test("Basic Array Functionality: pushObject w/ ChildRecord", function() {
308
348
  // Add something to the array
309
349
  elements = testParent.get('elements');
310
350
  // PushObject Tests
311
- cr = store.createRecord(NestedRecord.ChildRecordTest1, { type: 'ChildRecordTest1', name: 'Testikles', value: 'God Of Fertility'});
351
+ SC.run(function () {
352
+ cr = store.createRecord(NestedRecord.ChildRecordTest1, { type: 'ChildRecordTest1', name: 'Testikles', value: 'God Of Fertility'});
353
+ });
312
354
  elements.pushObject(cr);
313
355
  elements = testParent.get('elements');
314
356
  equals(elements.get('length'), 5, "after pushObject() on parent, check that the length of the array of child records is 5");
315
- cr = elements.objectAt(4);
357
+
358
+ SC.run(function () {
359
+ cr = elements.objectAt(4);
360
+ });
316
361
  ok(SC.kindOf(cr, SC.Record), "check that newly added ChildRecord creates an actual instance that is a kind of a SC.Record Object");
317
362
  ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest1), "check that newly added ChildRecord creates an actual instance of a ChildRecordTest1 Object");
318
363
  equals(cr.get('name'), 'Testikles', "after a pushObject on parent, check to see if it has all the right values for the attributes");
@@ -322,8 +367,10 @@ test("Basic Array Functionality: pushObject w/ ChildRecord", function() {
322
367
  // Verify the Attrs
323
368
  elementsAttrs = testParent.readAttribute('elements');
324
369
  equals(elementsAttrs.length, 5, "after pushObject() on parent, check that the length of the attribute array of child records is 5");
325
- crFirst = elements.objectAt(0).get('attributes');
326
- crLast = elements.objectAt(4).get('attributes');
370
+ SC.run(function () {
371
+ crFirst = elements.objectAt(0).get('attributes');
372
+ crLast = elements.objectAt(4).get('attributes');
373
+ });
327
374
  same(elementsAttrs[0], crFirst, "verify that parent attributes are the same as the first individual child attributes");
328
375
  same(elementsAttrs[4], crLast, "verify that parent attributes are the same as the last individual child attributes");
329
376
  });
@@ -334,7 +381,9 @@ test("Basic Array Functionality: popObject", function() {
334
381
  // Add something to the array
335
382
  elements = testParent.get('elements');
336
383
  // PushObject Tests
337
- elements.popObject();
384
+ SC.run(function () {
385
+ elements.popObject();
386
+ });
338
387
  elements = testParent.get('elements');
339
388
  equals(elements.get('length'), 3, "after popObject() on parent, check that the length of the array of child records is 3");
340
389
  ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
@@ -342,23 +391,54 @@ test("Basic Array Functionality: popObject", function() {
342
391
  // Verify the Attrs
343
392
  elementsAttrs = testParent.readAttribute('elements');
344
393
  equals(elementsAttrs.length, 3, "after pushObject() on parent, check that the length of the attribute array of child records is 3");
345
- crFirst = elements.objectAt(0).get('attributes');
346
- crLast = elements.objectAt(2).get('attributes');
394
+
395
+ SC.run(function () {
396
+ crFirst = elements.objectAt(0).get('attributes');
397
+ crLast = elements.objectAt(2).get('attributes');
398
+ });
347
399
  same(elementsAttrs[0], crFirst, "verify that parent attributes are the same as the first individual child attributes");
348
400
  same(elementsAttrs[2], crLast, "verify that parent attributes are the same as the last individual child attributes");
349
401
  });
350
402
 
351
403
  test("Basic Array Functionality: shiftObject", function() {
352
- var elements, cr;
404
+ var elements, cr, cr2;
405
+
353
406
  // Add something to the array
354
407
  elements = testParent.get('elements');
355
408
  // PushObject Tests
356
- elements.shiftObject();
409
+ SC.run(function () {
410
+ cr = elements.shiftObject();
411
+ cr2 = elements.objectAt(0);
412
+ });
413
+ equals(cr.get('name'), 'Child 1', "The shifted record should have the name");
414
+ equals(cr2.get('name'), 'Child 2', "The first record should have the name");
357
415
  elements = testParent.get('elements');
358
416
  equals(elements.get('length'), 3, "after shiftObject() on parent, check that the length of the array of child records is 3");
359
417
  ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
360
418
  });
361
419
 
420
+ test("Basic Array Functionality: replace", function() {
421
+ var elements, cr1, cr2;
422
+ // Add something to the array
423
+ elements = testParent.get('elements');
424
+ SC.run(function () {
425
+ cr1 = elements.objectAt(1);
426
+ cr2 = elements.objectAt(2);
427
+ });
428
+ equals(cr1.get('name'), 'Child 2', "The first record should have the name");
429
+ equals(cr2.get('name'), 'Child 3', "The second record should have the name");
430
+
431
+ SC.run(function () {
432
+ elements.replace(1, 2, [cr2, cr1]);
433
+ equals(elements.objectAt(2).get('name'), 'Child 2', "The new second record should have the name");
434
+ equals(elements.objectAt(1).get('name'), 'Child 3', "The new first record should still have the name");
435
+ equals(cr1.get('name'), 'Child 2', "The first record should still have the name");
436
+ equals(cr2.get('name'), 'Child 3', "The second record should still have the name");
437
+ });
438
+
439
+ ok(testParent.get('status') & SC.Record.DIRTY, 'check that the parent record is dirty');
440
+ });
441
+
362
442
  test("Basic Array Functionality: unshiftObject", function() {
363
443
  var elements, elementsAttrs, cr, crFirst, crLast;
364
444
  // Add something to the array
@@ -367,7 +447,9 @@ test("Basic Array Functionality: unshiftObject", function() {
367
447
  elements.unshiftObject({ type: 'ChildRecordTest1', name: 'Testikles', value: 'God Of Fertility'});
368
448
  elements = testParent.get('elements');
369
449
  equals(elements.get('length'), 5, "after pushObject() on parent, check that the length of the array of child records is 5");
370
- cr = elements.objectAt(0);
450
+ SC.run(function () {
451
+ cr = elements.objectAt(0);
452
+ });
371
453
  ok(SC.kindOf(cr, SC.Record), "check that newly added ChildRecord creates an actual instance that is a kind of a SC.Record Object");
372
454
  ok(SC.instanceOf(cr, NestedRecord.ChildRecordTest1), "check that newly added ChildRecord creates an actual instance of a ChildRecordTest1 Object");
373
455
  equals(cr.get('name'), 'Testikles', "after a pushObject on parent, check to see if it has all the right values for the attributes");
@@ -377,8 +459,10 @@ test("Basic Array Functionality: unshiftObject", function() {
377
459
  // Verify the Attrs
378
460
  elementsAttrs = testParent.readAttribute('elements');
379
461
  equals(elementsAttrs.length, 5, "after pushObject() on parent, check that the length of the attribute array of child records is 5");
380
- crFirst = elements.objectAt(0).get('attributes');
381
- crLast = elements.objectAt(4).get('attributes');
462
+ SC.run(function () {
463
+ crFirst = elements.objectAt(0).get('attributes');
464
+ crLast = elements.objectAt(4).get('attributes');
465
+ });
382
466
  same(elementsAttrs[0], crFirst, "verify that parent attributes are the same as the first individual child attributes");
383
467
  same(elementsAttrs[4], crLast, "verify that parent attributes are the same as the last individual child attributes");
384
468
  });
@@ -413,7 +497,14 @@ test("pushObject should trigger an arrayContentDidChange with only 1 added item"
413
497
  willChange: 'willChange',
414
498
  didChange: 'didChange'
415
499
  });
416
- testParent.get('elements').pushObject({});
500
+
501
+ SC.run(function () {
502
+ testParent.get('elements').pushObject({
503
+ type: 'ChildRecordTest1',
504
+ name: 'Child 5',
505
+ value: 'x'
506
+ });
507
+ });
417
508
 
418
509
  equals(didChangeCalls.length, 1, 'didChange should only be called once');
419
510
  equals(didChangeCalls[0][0], 4, 'didChange should be called with a start index of 4');
@@ -436,7 +527,13 @@ test("replace should trigger an arrayContentDidChange with only 1 added item", f
436
527
  willChange: 'willChange',
437
528
  didChange: 'didChange'
438
529
  });
439
- testParent.get('elements').replace(3, 1, [{}]);
530
+ SC.run(function () {
531
+ testParent.get('elements').replace(3, 1, [{
532
+ type: 'ChildRecordTest1',
533
+ name: 'Child 5',
534
+ value: 'x'
535
+ }]);
536
+ });
440
537
 
441
538
  equals(didChangeCalls.length, 1, 'didChange should only be called once');
442
539
  equals(didChangeCalls[0][0], 3, 'didChange should be called with a start index of 3');