Sha256: e79723e662ad7c741613ad8a91ad30d9e33af9d7962b3a93908a77cd66e85a76
Contents?: true
Size: 738 Bytes
Versions: 9
Compression:
Stored size: 738 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Apple, Inc. and contributors. // License: Licened under MIT license (see license.js) // ========================================================================== /*global module test equals context ok same */ module('String.prototype.w()'); test("'one two three'.w() => ['one','two','three']", function() { same('one two three'.w(), ['one','two','three'], "should be equal"); }); test("'one two three'.w() with extra spaces between words => ['one','two','three']", function() { same('one two three'.w(), ['one','two','three'], "should be equal"); });
Version data entries
9 entries across 9 versions & 1 rubygems