count.js 293 B

123456789101112
  1. "use strict";
  2. module.exports = function (t, a) {
  3. a.throws(function () { t.call("", ""); });
  4. a(t.call("x", "x"), 1);
  5. a(t.call("xx", "x"), 2);
  6. a(t.call("xxx", "xx"), 1);
  7. a(t.call("xxxx", "xx"), 2);
  8. a(t.call("xx", "xxx"), 0);
  9. a(t.call("", "elo"), 0);
  10. a(t.call("fooo", "foofooo"), 0);
  11. };