diff --git a/test/index.html b/test/index.html new file mode 100644 index 000000000..cab8dbdbc --- /dev/null +++ b/test/index.html @@ -0,0 +1,39 @@ + + + + + LowDash.js Test Suite + + + +

LowDash.js Test Suite

+

+
+

+
    + + + + + + + \ No newline at end of file diff --git a/test/underscore/test.html b/test/underscore/index.html similarity index 96% rename from test/underscore/test.html rename to test/underscore/index.html index 86e7300a6..9412c8ef5 100644 --- a/test/underscore/test.html +++ b/test/underscore/index.html @@ -6,7 +6,7 @@ - + diff --git a/test/underscore/temp.js b/test/underscore/temp.js deleted file mode 100644 index 68c39dc57..000000000 --- a/test/underscore/temp.js +++ /dev/null @@ -1,27 +0,0 @@ -(function() { - - var func = function(){}; - var date = new Date(); - var str = "a string"; - var numbers = []; - for (var i=0; i<1000; i++) numbers.push(i); - var objects = _.map(numbers, function(n){ return {num : n}; }); - var randomized = _.sortBy(numbers, function(){ return Math.random(); }); - - JSLitmus.test('_.isNumber', function() { - return _.isNumber(1000) - }); - - JSLitmus.test('_.newIsNumber', function() { - return _.newIsNumber(1000) - }); - - JSLitmus.test('_.isNumber(NaN)', function() { - return _.isNumber(NaN) - }); - - JSLitmus.test('_.newIsNumber(NaN)', function() { - return _.newIsNumber(NaN) - }); - -})(); \ No newline at end of file diff --git a/test/underscore/temp_tests.html b/test/underscore/temp_tests.html deleted file mode 100644 index bd34f9dd7..000000000 --- a/test/underscore/temp_tests.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Underscore Temporary Tests - - - - - - - -

    Underscore Temporary Tests

    -

    - A page for temporary speed tests, used for developing faster implementations - of existing Underscore methods. -

    -
    - -