Replace single-quotes with double-quotes for consistency and to save a few extra bytes during GZIP/DEFLATE compression

This commit is contained in:
David Murdoch
2011-03-10 07:41:30 +08:00
committed by Divya Manian
parent ff3ed8f402
commit d7d467e69e
7 changed files with 49 additions and 49 deletions

View File

@@ -5,22 +5,22 @@
// below are some general tests but feel free to delete them.
module("example tests");
test('HTML5 Boilerplate is sweet',function(){
test("HTML5 Boilerplate is sweet",function(){
expect(1);
equals('boilerplate'.replace('boilerplate','sweet'),'sweet','Yes. HTML5 Boilerplate is, in fact, sweet');
equals("boilerplate".replace("boilerplate","sweet"),"sweet","Yes. HTML5 Boilerplate is, in fact, sweet");
})
// these test things from plugins.js
test('Environment is good',function(){
test("Environment is good",function(){
expect(3);
ok( !!window.log, 'log function present');
ok( !!window.log, "log function present");
var history = log.history && log.history.length || 0;
log('logging from the test suite.')
equals( log.history.length - history, 1, 'log history keeps track' )
log("logging from the test suite.")
equals( log.history.length - history, 1, "log history keeps track" )
ok( !!window.Modernizr, 'Modernizr global is present')
ok( !!window.Modernizr, "Modernizr global is present")
})