diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-10-28 09:16:31 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-10-28 09:16:31 -0400 |
commit | a640fae24e834ea509e60c75325c195f78d88741 (patch) | |
tree | 837602494419ab362cf6ea56b3c60327c832cbb1 /tests/unit/controlgroup | |
parent | 926f3c6c3a5ee69de619cc9b4cd02ef3c520c709 (diff) | |
download | jquery-ui-a640fae24e834ea509e60c75325c195f78d88741.tar.gz jquery-ui-a640fae24e834ea509e60c75325c195f78d88741.zip |
Controlgroup: Add compound test suite for all jQuery versions
Diffstat (limited to 'tests/unit/controlgroup')
-rw-r--r-- | tests/unit/controlgroup/all.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/unit/controlgroup/all.html b/tests/unit/controlgroup/all.html new file mode 100644 index 000000000..737144acd --- /dev/null +++ b/tests/unit/controlgroup/all.html @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Countrolgroup Test Suite</title> + + <script src="../../../external/jquery/jquery.js"></script> + + <link rel="stylesheet" href="../../../external/qunit/qunit.css"> + <link rel="stylesheet" href="../../../external/qunit-composite/qunit-composite.css"> + <script src="../../../external/qunit/qunit.js"></script> + <script src="../../../external/qunit-composite/qunit-composite.js"></script> + <script src="../subsuite.js"></script> + + <script> + testAllVersions( "controlgroup" ); + </script> +</head> +<body> + +<div id="qunit"></div> +<div id="qunit-fixture"> + +</div> +</body> +</html> |