Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / underscore.string / test / strings_standalone.js
1 $(document).ready(function() {
2
3   module("String extensions");
4
5   test("underscore not included", function() {
6     raises(function() { _("foo") }, /TypeError/);
7   });
8
9   test("provides standalone functions", function() {
10     equals(typeof _.str.trim, "function");
11   });
12 });