From 24d978f8331a0b4e3bc4dc35eaa88a7f9a47c5fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Sun, 29 Apr 2012 20:13:34 -0400 Subject: [PATCH] Core tests: Coding standards. --- tests/unit/core/core.js | 55 +++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 30 deletions(-) diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index 53415584f..79d1d4034 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -1,49 +1,44 @@ -/* - * core unit tests - */ -(function($) { +(function( $ ) { -module('core - jQuery extensions'); +module( "core - jQuery extensions" ); -test('focus - original functionality', function() { - expect(1); - - $('#inputTabindex0') +test( "focus - original functionality", function() { + expect( 1 ); + $( "#inputTabindex0" ) .focus(function() { - ok(true, 'event triggered'); + ok( true, "event triggered" ); }) .focus(); }); -asyncTest('focus', function() { - expect(2); - $('#inputTabindex0') +asyncTest( "focus", function() { + expect( 2 ); + $( "#inputTabindex0" ) .focus(function() { - ok(true, 'event triggered'); + ok( true, "event triggered" ); }) - .focus(500, function() { - ok(true, 'callback triggered'); - $(this).unbind('focus'); + .focus( 500, function() { + ok( true, "callback triggered" ); start(); }); }); -test('zIndex', function() { - var el = $('#zIndexAutoWithParent'), +test( "zIndex", function() { + var el = $( "#zIndexAutoWithParent" ), parent = el.parent(); - equal(el.zIndex(), 100, 'zIndex traverses up to find value'); - equal(parent.zIndex(200), parent, 'zIndex setter is chainable'); - equal(el.zIndex(), 200, 'zIndex setter changed zIndex'); + equal( el.zIndex(), 100, "zIndex traverses up to find value" ); + equal( parent.zIndex(200 ), parent, "zIndex setter is chainable" ); + equal( el.zIndex(), 200, "zIndex setter changed zIndex" ); - el = $('#zIndexAutoWithParentViaCSS'); - equal(el.zIndex(), 0, 'zIndex traverses up to find CSS value, not found because not positioned'); + el = $( "#zIndexAutoWithParentViaCSS" ); + equal( el.zIndex(), 0, "zIndex traverses up to find CSS value, not found because not positioned" ); - el = $('#zIndexAutoWithParentViaCSSPositioned'); - equal(el.zIndex(), 100, 'zIndex traverses up to find CSS value'); - el.parent().zIndex(200); - equal(el.zIndex(), 200, 'zIndex setter changed zIndex, overriding CSS'); + el = $( "#zIndexAutoWithParentViaCSSPositioned" ); + equal( el.zIndex(), 100, "zIndex traverses up to find CSS value" ); + el.parent().zIndex( 200 ); + equal( el.zIndex(), 200, "zIndex setter changed zIndex, overriding CSS" ); - equal($('#zIndexAutoNoParent').zIndex(), 0, 'zIndex never explicitly set in hierarchy'); + equal( $( "#zIndexAutoNoParent" ).zIndex(), 0, "zIndex never explicitly set in hierarchy" ); }); test( "innerWidth - getter", function() { @@ -154,4 +149,4 @@ test( "outerHeight(true) - setter", function() { equal( el.height(), 32, "height set properly when hidden" ); }); -})(jQuery); +})( jQuery ); -- 2.39.5