diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-08-02 20:41:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-08-02 20:41:50 -0400 |
commit | bea74f2ae733f0c092a88038c7d054712fbf88ee (patch) | |
tree | 0dbc2db5c9337b3e927d1f9f7a20a2c16de18a91 /tests/unit/resizable | |
parent | e15c32d06763afd2376c61642397e7fc98338958 (diff) | |
download | jquery-ui-bea74f2ae733f0c092a88038c7d054712fbf88ee.tar.gz jquery-ui-bea74f2ae733f0c092a88038c7d054712fbf88ee.zip |
Tests: Added test suites to run individual widget tests against all supported jQuery versions.
Diffstat (limited to 'tests/unit/resizable')
-rw-r--r-- | tests/unit/resizable/all.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/unit/resizable/all.html b/tests/unit/resizable/all.html new file mode 100644 index 000000000..f496ed5a7 --- /dev/null +++ b/tests/unit/resizable/all.html @@ -0,0 +1,30 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Resizable Test Suite</title> + + <script src="../../../jquery-1.6.2.js"></script> + + <link rel="stylesheet" href="../../../external/qunit.css"> + <link rel="stylesheet" href="../subsuiteRunner.css"> + <script src="../../../external/qunit.js"></script> + <script src="../subsuiteRunner.js"></script> + <script src="../subsuite.js"></script> + + <script> + testAllVersions( "resizable" ); + </script> +</head> +<body> + +<h1 id="qunit-header">jQuery UI Resizable Test Suite</h1> +<h2 id="qunit-banner"></h2> +<div id="qunit-testrunner-toolbar"></div> +<h2 id="qunit-userAgent"></h2> +<ol id="qunit-tests"></ol> +<div id="qunit-fixture"> + +</div> +</body> +</html> |