(object, original)
| 363 | } |
| 364 | }, |
| 365 | update(object, original) { |
| 366 | if (object.get('yolo') === original.get('yolo')) { |
| 367 | fail('create should not have been called'); |
| 368 | } |
| 369 | }, |
| 370 | }; |
| 371 | const createSpy = spyOn(spy, 'create').and.callThrough(); |
| 372 | const updateSpy = spyOn(spy, 'update').and.callThrough(); |