mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tests: Correct all 404 errors in the test suite
This commit is contained in:
parent
ff47763924
commit
cf7dc089e0
@ -39,7 +39,7 @@ test("destroy", function() {
|
||||
ok(inp.next().is("#alt"), "Append - append text removed");
|
||||
// With both
|
||||
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($.data(inp[0], TestHelpers.datepicker.PROP_NAME), "Both - instance present");
|
||||
ok(inp.next()[0].nodeName.toLowerCase() === "img", "Both - button added");
|
||||
@ -92,7 +92,7 @@ test("enableDisable", function() {
|
||||
inp.datepicker("destroy");
|
||||
// With an image button
|
||||
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[0].disabled, "Enable/disable image - field initially enabled");
|
||||
ok(parseFloat(inp.next("img").css("opacity")) === 1, "Enable/disable image - image initially enabled");
|
||||
|
@ -145,13 +145,13 @@ asyncTest("invocation", function() {
|
||||
function step3() {
|
||||
// On image button
|
||||
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");
|
||||
button = inp.siblings("button");
|
||||
ok(button.length === 0, "Image button - button absent");
|
||||
image = inp.siblings("img");
|
||||
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");
|
||||
inp[0].focus();
|
||||
setTimeout(function() {
|
||||
@ -168,7 +168,7 @@ asyncTest("invocation", function() {
|
||||
|
||||
function step4() {
|
||||
// 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");
|
||||
button = inp.siblings("button");
|
||||
ok(button.length === 1, "Both - button present");
|
||||
|
BIN
tests/unit/datepicker/images/calendar.gif
Normal file
BIN
tests/unit/datepicker/images/calendar.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 269 B |
@ -11,7 +11,7 @@
|
||||
<script src="../testsuite.js"></script>
|
||||
<script>
|
||||
TestHelpers.loadResources({
|
||||
css: [ "ui.core", "ui.sortable" ],
|
||||
css: [ "ui.core" ],
|
||||
js: [
|
||||
"ui/jquery.ui.core.js",
|
||||
"ui/jquery.ui.widget.js",
|
||||
|
Loading…
Reference in New Issue
Block a user