diff options
author | John Resig <jeresig@gmail.com> | 2006-08-13 20:01:26 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-13 20:01:26 +0000 |
commit | e943090a72fada9068705a701e2f37ca2907d310 (patch) | |
tree | 6655e6ebbb5a7472e5ab035505e6566632429dab /test/lib/Test/Simple.js | |
parent | 0cd3821ac2b74d37384a36f281e5a952138aaae2 (diff) | |
download | jquery-e943090a72fada9068705a701e2f37ca2907d310.tar.gz jquery-e943090a72fada9068705a701e2f37ca2907d310.zip |
Moved the test directory.
Diffstat (limited to 'test/lib/Test/Simple.js')
-rw-r--r-- | test/lib/Test/Simple.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/test/lib/Test/Simple.js b/test/lib/Test/Simple.js deleted file mode 100644 index 8222ea84a..000000000 --- a/test/lib/Test/Simple.js +++ /dev/null @@ -1,29 +0,0 @@ -// # $Id: Kinetic.pm 1493 2005-04-07 19:20:18Z theory $ - -// Set up package. -if (typeof JSAN != 'undefined') new JSAN().use('Test.Builder'); -else { - if (typeof Test == 'undefined' || typeof Test.Builder == 'undefined') - throw new Error( - "You must load either JSAN or Test.Builder " - + "before loading Test.Simple" - ); -} - -Test.Simple = {}; -Test.Simple.EXPORT = ['plan', 'ok']; -Test.Simple.EXPORT_TAGS = { ':all': Test.Simple.EXPORT }; -Test.Simple.VERSION = '0.11'; - -Test.Simple.plan = function (cmds) { - return Test.Simple.Test.plan(cmds); -}; - -Test.Simple.ok = function (val, desc) { - return Test.Simple.Test.ok(val, desc); -}; - -// Handle exporting. -if (typeof JSAN == 'undefined') Test.Builder.exporter(Test.Simple); - -Test.Simple.Test = new Test.Builder(); |