Sha256: e689511383cf7ea5fa935e726bb0be2ff0448df1fe78bdf73901d5d884185964
Contents?: true
Size: 678 Bytes
Versions: 53
Compression:
Stored size: 678 Bytes
Contents
// ======================================================================== // SC.normalizeURL Tests // ======================================================================== var url,url1,url2; module("SC.normalizeURL"); test("should normalize the url passed as the parameter",function(){ url = '/desktop/mydocuments/music'; equals(SC.normalizeURL(url), 'http://'+window.location.host+'/desktop/mydocuments/music','Path with slash'); url1 = 'desktop/mydocuments/music'; equals(SC.normalizeURL(url1), '%@/desktop/mydocuments/music'.fmt(window.location.href),'Path without slash'); url2 = 'http:'; equals(YES,SC.normalizeURL(url2) === url2,'Path with http:'); });
Version data entries
53 entries across 53 versions & 3 rubygems