Sha256: 98a2659cd5036379f3158bc704c87fb4d5b4b6d97e3bbda0cc136595f5533b2d
Contents?: true
Size: 747 Bytes
Versions: 41
Compression:
Stored size: 747 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2011 Apple Inc. and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== module("SC.SelectionSet.copy"); test("basic copy", function() { var content = "1 2 3 4 5 6 7 8 9".w(), set = SC.SelectionSet.create().add(content,4,4).remove(content,6), copy = set.copy(); equals(set.get('length'), 3, 'precond - original set should have length'); equals(copy.get('length'), 3, 'copy should have same length'); same(copy, set, 'copy should be the same as original set'); });
Version data entries
41 entries across 41 versions & 1 rubygems