diff options
author | John Resig <jeresig@gmail.com> | 2009-10-22 21:39:41 -0400 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-10-22 21:39:41 -0400 |
commit | 920238d4851bc9b1ee22f6ebdffde9ed55cb1e91 (patch) | |
tree | c875f40c1a882e333f8a69fab184c4ac5a453ee3 | |
parent | 4a51b12b95fe6c6c617e02913b7ac5ee3a4b29a0 (diff) | |
download | jquery-920238d4851bc9b1ee22f6ebdffde9ed55cb1e91.tar.gz jquery-920238d4851bc9b1ee22f6ebdffde9ed55cb1e91.zip |
Pull in QUnit using a submodule. In order to build jQuery (and run the tests) you'll need to do 'git submodule init' and 'git submodule update' after checkout.
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | test/index.html | 4 | ||||
m--------- | test/qunit | 0 |
3 files changed, 5 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..50fc19940 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "test/qunit"] + path = test/qunit + url = git://github.com/jquery/qunit.git diff --git a/test/index.html b/test/index.html index adf176284..5c18f4f6a 100644 --- a/test/index.html +++ b/test/index.html @@ -3,12 +3,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery Test Suite</title> - <link rel="Stylesheet" media="screen" href="qunit/qunit.css" /> + <link rel="Stylesheet" media="screen" href="qunit/qunit/qunit.css" /> <link rel="Stylesheet" media="screen" href="data/testsuite.css" /> <!-- Includes --> <script type="text/javascript" src="data/testinit.js"></script> <script type="text/javascript" src="../dist/jquery.js"></script> - <script type="text/javascript" src="qunit/qunit.js"></script> + <script type="text/javascript" src="qunit/qunit/qunit.js"></script> <script type="text/javascript" src="data/testrunner.js"></script> <script type="text/javascript" src="unit/core.js"></script> <script type="text/javascript" src="unit/data.js"></script> diff --git a/test/qunit b/test/qunit new file mode 160000 +Subproject 57d1a28a9f6c44204d46ad651711beb4f864211 |