Sha256: c1e4376b4ad205a2bd21fc6cd514dafec20a6c7893283acd2bd6303d9be8002f

Contents?: true

Size: 1.02 KB

Versions: 9

Compression:

Stored size: 1.02 KB

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("SC.Validator.Date");

test("Converts into date if a value is given",function(){
  
    var num = 1234947136000; // represents time in secs
    var c = SC.Validator.Date.fieldValueForObject(1234947136000,'','');
    equals(YES,c === "Feb 18, 2009 12:52:16 AM","Number converted to date format");
});

test("Converts into number when date string is given", function(){
    var da = "Feb 18, 2009 12:52:16 AM"; // date string
    var d = SC.Validator.Date.objectForFieldValue("Feb 18, 2009 12:52:16 AM",'','');
    equals(YES,d === 1234947136000,"Date String compared with value in seconds");
    equals(YES,SC.typeOf(d) == "number","Number is obtained"); 	
});

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.0.20090720093355 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.0.20090720202429 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.0.20090721125122 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.126 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.20090721145251 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.20090721145280 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.20090721145281 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.20090721145282 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js
sproutit-sproutcore-1.0.203 frameworks/sproutcore/frameworks/foundation/tests/validators/date.js