Tests: Correct all 404 errors in the test suite

This commit is contained in:
Mike Sherov 2013-01-02 18:03:03 -05:00
parent ff47763924
commit cf7dc089e0
4 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@ test("destroy", function() {
ok(inp.next().is("#alt"), "Append - append text removed"); ok(inp.next().is("#alt"), "Append - append text removed");
// With both // With both
inp= TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImageOnly: true, inp= TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImageOnly: true,
buttonImage: "img/calendar.gif", appendText: "Testing"}); buttonImage: "images/calendar.gif", appendText: "Testing"});
ok(inp.is(".hasDatepicker"), "Both - marker class set"); ok(inp.is(".hasDatepicker"), "Both - marker class set");
ok($.data(inp[0], TestHelpers.datepicker.PROP_NAME), "Both - instance present"); ok($.data(inp[0], TestHelpers.datepicker.PROP_NAME), "Both - instance present");
ok(inp.next()[0].nodeName.toLowerCase() === "img", "Both - button added"); ok(inp.next()[0].nodeName.toLowerCase() === "img", "Both - button added");
@ -92,7 +92,7 @@ test("enableDisable", function() {
inp.datepicker("destroy"); inp.datepicker("destroy");
// With an image button // With an image button
inp = TestHelpers.datepicker.init("#inp", {showOn: "button", buttonImageOnly: true, inp = TestHelpers.datepicker.init("#inp", {showOn: "button", buttonImageOnly: true,
buttonImage: "img/calendar.gif"}); buttonImage: "images/calendar.gif"});
ok(!inp.datepicker("isDisabled"), "Enable/disable image - initially marked as enabled"); ok(!inp.datepicker("isDisabled"), "Enable/disable image - initially marked as enabled");
ok(!inp[0].disabled, "Enable/disable image - field initially enabled"); ok(!inp[0].disabled, "Enable/disable image - field initially enabled");
ok(parseFloat(inp.next("img").css("opacity")) === 1, "Enable/disable image - image initially enabled"); ok(parseFloat(inp.next("img").css("opacity")) === 1, "Enable/disable image - image initially enabled");

View File

@ -145,13 +145,13 @@ asyncTest("invocation", function() {
function step3() { function step3() {
// On image button // On image button
inp = TestHelpers.datepicker.init("#inp", {showOn: "button", buttonImageOnly: true, inp = TestHelpers.datepicker.init("#inp", {showOn: "button", buttonImageOnly: true,
buttonImage: "img/calendar.gif", buttonText: "Cal"}); buttonImage: "images/calendar.gif", buttonText: "Cal"});
ok(!dp.is(":visible"), "Image button - initially hidden"); ok(!dp.is(":visible"), "Image button - initially hidden");
button = inp.siblings("button"); button = inp.siblings("button");
ok(button.length === 0, "Image button - button absent"); ok(button.length === 0, "Image button - button absent");
image = inp.siblings("img"); image = inp.siblings("img");
ok(image.length === 1, "Image button - image present"); ok(image.length === 1, "Image button - image present");
equal(image.attr("src"), "img/calendar.gif", "Image button - image source"); equal(image.attr("src"), "images/calendar.gif", "Image button - image source");
equal(image.attr("title"), "Cal", "Image button - image text"); equal(image.attr("title"), "Cal", "Image button - image text");
inp[0].focus(); inp[0].focus();
setTimeout(function() { setTimeout(function() {
@ -168,7 +168,7 @@ asyncTest("invocation", function() {
function step4() { function step4() {
// On both // On both
inp = TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImage: "img/calendar.gif"}); inp = TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImage: "images/calendar.gif"});
ok(!dp.is(":visible"), "Both - initially hidden"); ok(!dp.is(":visible"), "Both - initially hidden");
button = inp.siblings("button"); button = inp.siblings("button");
ok(button.length === 1, "Both - button present"); ok(button.length === 1, "Both - button present");

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

View File

@ -11,7 +11,7 @@
<script src="../testsuite.js"></script> <script src="../testsuite.js"></script>
<script> <script>
TestHelpers.loadResources({ TestHelpers.loadResources({
css: [ "ui.core", "ui.sortable" ], css: [ "ui.core" ],
js: [ js: [
"ui/jquery.ui.core.js", "ui/jquery.ui.core.js",
"ui/jquery.ui.widget.js", "ui/jquery.ui.widget.js",