Sha256: 013dbfd2f7f31eafa7b6f3c9ae76a31bddd04ee98d902e0a5e676d97d34955aa

Contents?: true

Size: 1.49 KB

Versions: 125

Compression:

Stored size: 1.49 KB

Contents

/* -*- Mode: js; js-indent-level: 2; -*- */
/*
 * Copyright 2011 Mozilla Foundation and contributors
 * Licensed under the New BSD license. See LICENSE or:
 * http://opensource.org/licenses/BSD-3-Clause
 */
if (typeof define !== 'function') {
    var define = require('amdefine')(module, require);
}
define(function (require, exports, module) {

  var binarySearch = require('../../lib/source-map/binary-search');

  function numberCompare(a, b) {
    return a - b;
  }

  exports['test too high'] = function (assert, util) {
    var needle = 30;
    var haystack = [2,4,6,8,10,12,14,16,18,20];

    assert.doesNotThrow(function () {
      binarySearch.search(needle, haystack, numberCompare);
    });

    assert.equal(binarySearch.search(needle, haystack, numberCompare), 20);
  };

  exports['test too low'] = function (assert, util) {
    var needle = 1;
    var haystack = [2,4,6,8,10,12,14,16,18,20];

    assert.doesNotThrow(function () {
      binarySearch.search(needle, haystack, numberCompare);
    });

    assert.equal(binarySearch.search(needle, haystack, numberCompare), null);
  };

  exports['test exact search'] = function (assert, util) {
    var needle = 4;
    var haystack = [2,4,6,8,10,12,14,16,18,20];

    assert.equal(binarySearch.search(needle, haystack, numberCompare), 4);
  };

  exports['test fuzzy search'] = function (assert, util) {
    var needle = 19;
    var haystack = [2,4,6,8,10,12,14,16,18,20];

    assert.equal(binarySearch.search(needle, haystack, numberCompare), 18);
  };

});

Version data entries

125 entries across 91 versions & 13 rubygems

Version Path
smock-0.1.244 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.243 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.242 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.241 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.240 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.239 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.2 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.1 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.238 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.237 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.236 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.235 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.234 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.233 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
traceur-rb-0.0.2 vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.232 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.231 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.230 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.229 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
smock-0.1.228 node_modules/webpack/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js