3d7968ba71fc5040df11c009cde2a2a983632569.svn-base 274 Bytes
$(document).ready(function() {

  module("String extensions");

  test("underscore not included", function() {
    raises(function() { _("foo") }, /TypeError/);
  });

  test("provides standalone functions", function() {
    equals(typeof _.str.trim, "function");
  });
});