diff options
author | gnarf <gnarf@gnarf.net> | 2011-03-29 15:32:48 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-03-29 15:32:48 -0500 |
commit | 0c009730cef8a475c6d72a5b2b6d374971bfc7b5 (patch) | |
tree | 63fa658feee296ea83c922b070162f5593c8b717 /tests | |
parent | 6fc98deef03b91b0ea2ed51be2708bdd2c61d479 (diff) | |
download | jquery-ui-0c009730cef8a475c6d72a5b2b6d374971bfc7b5.tar.gz jquery-ui-0c009730cef8a475c6d72a5b2b6d374971bfc7b5.zip |
unit tests: adding an empty effects unit test page
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/effects/effects.html | 50 | ||||
-rw-r--r-- | tests/unit/effects/effects_core.js | 10 | ||||
-rw-r--r-- | tests/unit/index.html | 5 |
3 files changed, 65 insertions, 0 deletions
diff --git a/tests/unit/effects/effects.html b/tests/unit/effects/effects.html new file mode 100644 index 000000000..6afd5c16a --- /dev/null +++ b/tests/unit/effects/effects.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8" /> + <title>jQuery UI Core Test Suite</title> + + <script type="text/javascript" src="../../../jquery-1.5.1.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.core.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.blind.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.bounce.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.clip.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.drop.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.explode.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.fade.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.fold.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.highlight.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.pulsate.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.scale.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.shake.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.slide.js"></script> + <script type="text/javascript" src="../../../ui/jquery.effects.transfer.js"></script> + + <link rel="stylesheet" href="../../../external/qunit.css" type="text/css"/> + <script type="text/javascript" src="../../../external/qunit.js"></script> + <script type="text/javascript" src="../../jquery.simulate.js"></script> + <script type="text/javascript" src="../testsuite.js"></script> + <script type="text/javascript" src="effects_core.js"></script> + + <script type="text/javascript" src="../swarminject.js"></script> + + <style type="text/css"> + .zindex {z-index: 100} + .absolute {position: absolute} + </style> +</head> +<body> + +<h1 id="qunit-header">jQuery UI Effects 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> diff --git a/tests/unit/effects/effects_core.js b/tests/unit/effects/effects_core.js new file mode 100644 index 000000000..74582947f --- /dev/null +++ b/tests/unit/effects/effects_core.js @@ -0,0 +1,10 @@ +(function($) { + +module('effects - Core Effects'); + +test("Empty Unit", function() { + expect(1); + equals(0,0, "Unit Tests work"); +}); + +})(jQuery); diff --git a/tests/unit/index.html b/tests/unit/index.html index a677023dc..5282d3f27 100644 --- a/tests/unit/index.html +++ b/tests/unit/index.html @@ -59,6 +59,11 @@ <li><a href="position/position.html">Position</a></li> </ul> +<h2>Effects</h2> +<ul> + <li><a href="effects/effects.html">Effects</a></li> +</ul> + </body> </html> |