diff options
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | spec/builtins.js | 2 | ||||
-rw-r--r-- | spec/env/common.js | 10 | ||||
-rw-r--r-- | spec/parser.js | 117 | ||||
-rw-r--r-- | spec/require.js | 8 | ||||
-rw-r--r-- | spec/tokenizer.js | 237 | ||||
-rw-r--r-- | spec/utils.js | 44 |
7 files changed, 211 insertions, 208 deletions
diff --git a/package.json b/package.json index 2b10310..99a62bd 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,6 @@ "mocha": "*", "mustache": "~0.7.2", "semver": "~2.1.0", - "should": "~1.2.2", "underscore": "~1.5.1" }, "main": "lib/index.js", diff --git a/spec/builtins.js b/spec/builtins.js index ef2d829..766541a 100644 --- a/spec/builtins.js +++ b/spec/builtins.js @@ -73,7 +73,7 @@ describe('builtin helpers', function() { var expected1 = "<b>#1</b>. goodbye! 2. GOODBYE! cruel world!"; var expected2 = "2. GOODBYE! <b>#1</b>. goodbye! cruel world!"; - (actual === expected1 || actual === expected2).should.equal(true, "each with object argument iterates over the contents when not empty"); + equals(actual === expected1 || actual === expected2, true, "each with object argument iterates over the contents when not empty"); shouldCompileTo(string, {goodbyes: [], world: "world"}, "cruel world!", "each with object argument ignores the contents when empty"); }); diff --git a/spec/env/common.js b/spec/env/common.js index 7dfe16e..53bf977 100644 --- a/spec/env/common.js +++ b/spec/env/common.js @@ -1,12 +1,12 @@ -global.should = require('should'); - global.shouldCompileTo = function(string, hashOrArray, expected, message) { shouldCompileToWithPartials(string, hashOrArray, false, expected, message); }; global.shouldCompileToWithPartials = function(string, hashOrArray, partials, expected, message) { var result = compileWithPartials(string, hashOrArray, partials); - result.should.equal(expected, "'" + expected + "' should === '" + result + "': " + message); + if (result !== expected) { + throw new Error("'" + expected + "' should === '" + result + "': " + message); + } }; global.compileWithPartials = function(string, hashOrArray, partials) { @@ -24,7 +24,9 @@ global.compileWithPartials = function(string, hashOrArray, partials) { global.equals = global.equal = function(a, b, msg) { - a.should.equal(b, msg || ''); + if (a !== b) { + throw new Error("'" + b + "' should === '" + a + "'" + (msg ? ": " + msg : '')); + } }; global.shouldThrow = function(callback, type, msg) { diff --git a/spec/parser.js b/spec/parser.js index 3397105..70c1635 100644 --- a/spec/parser.js +++ b/spec/parser.js @@ -1,3 +1,4 @@ +/*global Handlebars */ describe('parser', function() { if (!Handlebars.print) { return; @@ -9,165 +10,165 @@ describe('parser', function() { } it('parses simple mustaches', function() { - ast_for('{{foo}}').should.equal("{{ ID:foo [] }}\n"); - ast_for('{{foo?}}').should.equal("{{ ID:foo? [] }}\n"); - ast_for('{{foo_}}').should.equal("{{ ID:foo_ [] }}\n"); - ast_for('{{foo-}}').should.equal("{{ ID:foo- [] }}\n"); - ast_for('{{foo:}}').should.equal("{{ ID:foo: [] }}\n"); + equals(ast_for('{{foo}}'), "{{ ID:foo [] }}\n"); + equals(ast_for('{{foo?}}'), "{{ ID:foo? [] }}\n"); + equals(ast_for('{{foo_}}'), "{{ ID:foo_ [] }}\n"); + equals(ast_for('{{foo-}}'), "{{ ID:foo- [] }}\n"); + equals(ast_for('{{foo:}}'), "{{ ID:foo: [] }}\n"); }); it('parses simple mustaches with data', function() { - ast_for("{{@foo}}").should.equal("{{ @ID:foo [] }}\n"); + equals(ast_for("{{@foo}}"), "{{ @ID:foo [] }}\n"); }); it('parses mustaches with paths', function() { - ast_for("{{foo/bar}}").should.equal("{{ PATH:foo/bar [] }}\n"); + equals(ast_for("{{foo/bar}}"), "{{ PATH:foo/bar [] }}\n"); }); it('parses mustaches with this/foo', function() { - ast_for("{{this/foo}}").should.equal("{{ ID:foo [] }}\n"); + equals(ast_for("{{this/foo}}"), "{{ ID:foo [] }}\n"); }); it('parses mustaches with - in a path', function() { - ast_for("{{foo-bar}}").should.equal("{{ ID:foo-bar [] }}\n"); + equals(ast_for("{{foo-bar}}"), "{{ ID:foo-bar [] }}\n"); }); it('parses mustaches with parameters', function() { - ast_for("{{foo bar}}").should.equal("{{ ID:foo [ID:bar] }}\n"); + equals(ast_for("{{foo bar}}"), "{{ ID:foo [ID:bar] }}\n"); }); it('parses mustaches with string parameters', function() { - ast_for("{{foo bar \"baz\" }}").should.equal('{{ ID:foo [ID:bar, "baz"] }}\n'); + equals(ast_for("{{foo bar \"baz\" }}"), '{{ ID:foo [ID:bar, "baz"] }}\n'); }); it('parses mustaches with INTEGER parameters', function() { - ast_for("{{foo 1}}").should.equal("{{ ID:foo [INTEGER{1}] }}\n"); + equals(ast_for("{{foo 1}}"), "{{ ID:foo [INTEGER{1}] }}\n"); }); it('parses mustaches with BOOLEAN parameters', function() { - ast_for("{{foo true}}").should.equal("{{ ID:foo [BOOLEAN{true}] }}\n"); - ast_for("{{foo false}}").should.equal("{{ ID:foo [BOOLEAN{false}] }}\n"); + equals(ast_for("{{foo true}}"), "{{ ID:foo [BOOLEAN{true}] }}\n"); + equals(ast_for("{{foo false}}"), "{{ ID:foo [BOOLEAN{false}] }}\n"); }); it('parses mutaches with DATA parameters', function() { - ast_for("{{foo @bar}}").should.equal("{{ ID:foo [@ID:bar] }}\n"); + equals(ast_for("{{foo @bar}}"), "{{ ID:foo [@ID:bar] }}\n"); }); it('parses mustaches with hash arguments', function() { - ast_for("{{foo bar=baz}}").should.equal("{{ ID:foo [] HASH{bar=ID:baz} }}\n"); - ast_for("{{foo bar=1}}").should.equal("{{ ID:foo [] HASH{bar=INTEGER{1}} }}\n"); - ast_for("{{foo bar=true}}").should.equal("{{ ID:foo [] HASH{bar=BOOLEAN{true}} }}\n"); - ast_for("{{foo bar=false}}").should.equal("{{ ID:foo [] HASH{bar=BOOLEAN{false}} }}\n"); - ast_for("{{foo bar=@baz}}").should.equal("{{ ID:foo [] HASH{bar=@ID:baz} }}\n"); + equals(ast_for("{{foo bar=baz}}"), "{{ ID:foo [] HASH{bar=ID:baz} }}\n"); + equals(ast_for("{{foo bar=1}}"), "{{ ID:foo [] HASH{bar=INTEGER{1}} }}\n"); + equals(ast_for("{{foo bar=true}}"), "{{ ID:foo [] HASH{bar=BOOLEAN{true}} }}\n"); + equals(ast_for("{{foo bar=false}}"), "{{ ID:foo [] HASH{bar=BOOLEAN{false}} }}\n"); + equals(ast_for("{{foo bar=@baz}}"), "{{ ID:foo [] HASH{bar=@ID:baz} }}\n"); - ast_for("{{foo bar=baz bat=bam}}").should.equal("{{ ID:foo [] HASH{bar=ID:baz, bat=ID:bam} }}\n"); - ast_for("{{foo bar=baz bat=\"bam\"}}").should.equal('{{ ID:foo [] HASH{bar=ID:baz, bat="bam"} }}\n'); + equals(ast_for("{{foo bar=baz bat=bam}}"), "{{ ID:foo [] HASH{bar=ID:baz, bat=ID:bam} }}\n"); + equals(ast_for("{{foo bar=baz bat=\"bam\"}}"), '{{ ID:foo [] HASH{bar=ID:baz, bat="bam"} }}\n'); - ast_for("{{foo bat='bam'}}").should.equal('{{ ID:foo [] HASH{bat="bam"} }}\n'); + equals(ast_for("{{foo bat='bam'}}"), '{{ ID:foo [] HASH{bat="bam"} }}\n'); - ast_for("{{foo omg bar=baz bat=\"bam\"}}").should.equal('{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam"} }}\n'); - ast_for("{{foo omg bar=baz bat=\"bam\" baz=1}}").should.equal('{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=INTEGER{1}} }}\n'); - ast_for("{{foo omg bar=baz bat=\"bam\" baz=true}}").should.equal('{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{true}} }}\n'); - ast_for("{{foo omg bar=baz bat=\"bam\" baz=false}}").should.equal('{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{false}} }}\n'); + equals(ast_for("{{foo omg bar=baz bat=\"bam\"}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam"} }}\n'); + equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=1}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=INTEGER{1}} }}\n'); + equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=true}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{true}} }}\n'); + equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=false}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{false}} }}\n'); }); it('parses contents followed by a mustache', function() { - ast_for("foo bar {{baz}}").should.equal("CONTENT[ \'foo bar \' ]\n{{ ID:baz [] }}\n"); + equals(ast_for("foo bar {{baz}}"), "CONTENT[ \'foo bar \' ]\n{{ ID:baz [] }}\n"); }); it('parses a partial', function() { - ast_for("{{> foo }}").should.equal("{{> PARTIAL:foo }}\n"); + equals(ast_for("{{> foo }}"), "{{> PARTIAL:foo }}\n"); }); it('parses a partial with context', function() { - ast_for("{{> foo bar}}").should.equal("{{> PARTIAL:foo ID:bar }}\n"); + equals(ast_for("{{> foo bar}}"), "{{> PARTIAL:foo ID:bar }}\n"); }); it('parses a partial with a complex name', function() { - ast_for("{{> shared/partial?.bar}}").should.equal("{{> PARTIAL:shared/partial?.bar }}\n"); + equals(ast_for("{{> shared/partial?.bar}}"), "{{> PARTIAL:shared/partial?.bar }}\n"); }); it('parses a comment', function() { - ast_for("{{! this is a comment }}").should.equal("{{! ' this is a comment ' }}\n"); + equals(ast_for("{{! this is a comment }}"), "{{! ' this is a comment ' }}\n"); }); it('parses a multi-line comment', function() { - ast_for("{{!\nthis is a multi-line comment\n}}").should.equal("{{! \'\nthis is a multi-line comment\n\' }}\n"); + equals(ast_for("{{!\nthis is a multi-line comment\n}}"), "{{! \'\nthis is a multi-line comment\n\' }}\n"); }); it('parses an inverse section', function() { - ast_for("{{#foo}} bar {{^}} baz {{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n"); + equals(ast_for("{{#foo}} bar {{^}} baz {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n"); }); it('parses an inverse (else-style) section', function() { - ast_for("{{#foo}} bar {{else}} baz {{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n"); + equals(ast_for("{{#foo}} bar {{else}} baz {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n"); }); it('parses empty blocks', function() { - ast_for("{{#foo}}{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); + equals(ast_for("{{#foo}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); }); it('parses empty blocks with empty inverse section', function() { - ast_for("{{#foo}}{{^}}{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); + equals(ast_for("{{#foo}}{{^}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); }); it('parses empty blocks with empty inverse (else-style) section', function() { - ast_for("{{#foo}}{{else}}{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); + equals(ast_for("{{#foo}}{{else}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n"); }); it('parses non-empty blocks with empty inverse section', function() { - ast_for("{{#foo}} bar {{^}}{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n"); + equals(ast_for("{{#foo}} bar {{^}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n"); }); it('parses non-empty blocks with empty inverse (else-style) section', function() { - ast_for("{{#foo}} bar {{else}}{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n"); + equals(ast_for("{{#foo}} bar {{else}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n"); }); it('parses empty blocks with non-empty inverse section', function() { - ast_for("{{#foo}}{{^}} bar {{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n"); + equals(ast_for("{{#foo}}{{^}} bar {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n"); }); it('parses empty blocks with non-empty inverse (else-style) section', function() { - ast_for("{{#foo}}{{else}} bar {{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n"); + equals(ast_for("{{#foo}}{{else}} bar {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n"); }); it('parses a standalone inverse section', function() { - ast_for("{{^foo}}bar{{/foo}}").should.equal("BLOCK:\n {{ ID:foo [] }}\n {{^}}\n CONTENT[ 'bar' ]\n"); + equals(ast_for("{{^foo}}bar{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n {{^}}\n CONTENT[ 'bar' ]\n"); }); it("raises if there's a Parse error", function() { - (function() { + shouldThrow(function() { ast_for("foo{{^}}bar"); - }).should.throw(/Parse error on line 1/); - (function() { + }, Error, /Parse error on line 1/); + shouldThrow(function() { ast_for("{{foo}"); - }).should.throw(/Parse error on line 1/); - (function() { + }, Error, /Parse error on line 1/); + shouldThrow(function() { ast_for("{{foo &}}"); - }).should.throw(/Parse error on line 1/); - (function() { + }, Error, /Parse error on line 1/); + shouldThrow(function() { ast_for("{{#goodbyes}}{{/hellos}}"); - }).should.throw(/goodbyes doesn't match hellos/); + }, Error, /goodbyes doesn't match hellos/); }); it('knows how to report the correct line number in errors', function() { - (function() { + shouldThrow(function() { ast_for("hello\nmy\n{{foo}"); - }).should.throw(/Parse error on line 3/); - (function() { + }, Error, /Parse error on line 3/); + shouldThrow(function() { ast_for("hello\n\nmy\n\n{{foo}"); - }).should.throw(/Parse error on line 5/); + }, Error, /Parse error on line 5/); }); it('knows how to report the correct line number in errors when the first character is a newline', function() { - (function() { + shouldThrow(function() { ast_for("\n\nhello\n\nmy\n\n{{foo}"); - }).should.throw(/Parse error on line 7/); + }, Error, /Parse error on line 7/); }); describe('externally compiled AST', function() { it('can pass through an already-compiled AST', function() { - ast_for(new Handlebars.AST.ProgramNode([ new Handlebars.AST.ContentNode("Hello")])).should.equal("CONTENT[ \'Hello\' ]\n"); + equals(ast_for(new Handlebars.AST.ProgramNode([ new Handlebars.AST.ContentNode("Hello")])), "CONTENT[ \'Hello\' ]\n"); }); }); }); diff --git a/spec/require.js b/spec/require.js index d750d7d..11b7a0c 100644 --- a/spec/require.js +++ b/spec/require.js @@ -2,22 +2,22 @@ if (typeof(require) !== 'undefined' && require.extensions[".handlebars"]) { describe('Require', function() { it('Load .handlebars files with require()', function() { var template = require("./artifacts/example_1"); - template.should.eql(require("./artifacts/example_1.handlebars")); + equal(template, require("./artifacts/example_1.handlebars")); var expected = 'foo\n'; var result = template({foo: "foo"}); - result.should.equal(expected); + equal(result, expected); }); it('Load .hbs files with require()', function() { var template = require("./artifacts/example_2"); - template.should.eql(require("./artifacts/example_2.hbs")); + equal(template, require("./artifacts/example_2.hbs")); var expected = 'Hello, World!\n'; var result = template({name: "World"}); - result.should.equal(expected); + equal(result, expected); }); }); } diff --git a/spec/tokenizer.js b/spec/tokenizer.js index de981e4..b671940 100644 --- a/spec/tokenizer.js +++ b/spec/tokenizer.js @@ -1,12 +1,11 @@ -var should = require('should'); - -should.Assertion.prototype.match_tokens = function(tokens) { - this.obj.forEach(function(value, index) { - value.name.should.equal(tokens[index]); +function shouldMatchTokens(result, tokens) { + result.forEach(function(value, index) { + equals(value.name, tokens[index]); }); }; -should.Assertion.prototype.be_token = function(name, text) { - this.obj.should.eql({name: name, text: text}); +function shouldBeToken(result, name, text) { + equals(result.name, name); + equals(result.text, text); }; describe('Tokenizer', function() { @@ -35,324 +34,324 @@ describe('Tokenizer', function() { it('tokenizes a simple mustache as "OPEN ID CLOSE"', function() { var result = tokenize("{{foo}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); }); it('supports unescaping with &', function() { var result = tokenize("{{&bar}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE']); - result[0].should.be_token("OPEN", "{{&"); - result[1].should.be_token("ID", "bar"); + shouldBeToken(result[0], "OPEN", "{{&"); + shouldBeToken(result[1], "ID", "bar"); }); it('supports unescaping with {{{', function() { var result = tokenize("{{{bar}}}"); - result.should.match_tokens(['OPEN_UNESCAPED', 'ID', 'CLOSE_UNESCAPED']); + shouldMatchTokens(result, ['OPEN_UNESCAPED', 'ID', 'CLOSE_UNESCAPED']); - result[1].should.be_token("ID", "bar"); + shouldBeToken(result[1], "ID", "bar"); }); it('supports escaping delimiters', function() { var result = tokenize("{{foo}} \\{{bar}} {{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[3].should.be_token("CONTENT", " "); - result[4].should.be_token("CONTENT", "{{bar}} "); + shouldBeToken(result[3], "CONTENT", " "); + shouldBeToken(result[4], "CONTENT", "{{bar}} "); }); it('supports escaping multiple delimiters', function() { var result = tokenize("{{foo}} \\{{bar}} \\{{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'CONTENT']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'CONTENT']); - result[3].should.be_token("CONTENT", " "); - result[4].should.be_token("CONTENT", "{{bar}} "); - result[5].should.be_token("CONTENT", "{{baz}}"); + shouldBeToken(result[3], "CONTENT", " "); + shouldBeToken(result[4], "CONTENT", "{{bar}} "); + shouldBeToken(result[5], "CONTENT", "{{baz}}"); }); it('supports escaping a triple stash', function() { var result = tokenize("{{foo}} \\{{{bar}}} {{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[4].should.be_token("CONTENT", "{{{bar}}} "); + shouldBeToken(result[4], "CONTENT", "{{{bar}}} "); }); it('supports escaping escape character', function() { var result = tokenize("{{foo}} \\\\{{bar}} {{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[3].should.be_token("CONTENT", " \\"); - result[5].should.be_token("ID", "bar"); + shouldBeToken(result[3], "CONTENT", " \\"); + shouldBeToken(result[5], "ID", "bar"); }); it('supports escaping multiple escape characters', function() { var result = tokenize("{{foo}} \\\\{{bar}} \\\\{{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[3].should.be_token("CONTENT", " \\"); - result[5].should.be_token("ID", "bar"); - result[7].should.be_token("CONTENT", " \\"); - result[9].should.be_token("ID", "baz"); + shouldBeToken(result[3], "CONTENT", " \\"); + shouldBeToken(result[5], "ID", "bar"); + shouldBeToken(result[7], "CONTENT", " \\"); + shouldBeToken(result[9], "ID", "baz"); }); it('supports mixed escaped delimiters and escaped escape characters', function() { var result = tokenize("{{foo}} \\\\{{bar}} \\{{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'CONTENT']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT', 'CONTENT', 'CONTENT']); - result[3].should.be_token("CONTENT", " \\"); - result[4].should.be_token("OPEN", "{{"); - result[5].should.be_token("ID", "bar"); - result[7].should.be_token("CONTENT", " "); - result[8].should.be_token("CONTENT", "{{baz}}"); + shouldBeToken(result[3], "CONTENT", " \\"); + shouldBeToken(result[4], "OPEN", "{{"); + shouldBeToken(result[5], "ID", "bar"); + shouldBeToken(result[7], "CONTENT", " "); + shouldBeToken(result[8], "CONTENT", "{{baz}}"); }); it('supports escaped escape character on a triple stash', function() { var result = tokenize("{{foo}} \\\\{{{bar}}} {{baz}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN_UNESCAPED', 'ID', 'CLOSE_UNESCAPED', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE', 'CONTENT', 'OPEN_UNESCAPED', 'ID', 'CLOSE_UNESCAPED', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[3].should.be_token("CONTENT", " \\"); - result[5].should.be_token("ID", "bar"); + shouldBeToken(result[3], "CONTENT", " \\"); + shouldBeToken(result[5], "ID", "bar"); }); it('tokenizes a simple path', function() { var result = tokenize("{{foo/bar}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); }); it('allows dot notation', function() { var result = tokenize("{{foo.bar}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); - tokenize("{{foo.bar.baz}}").should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(tokenize("{{foo.bar.baz}}"), ['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); }); it('allows path literals with []', function() { var result = tokenize("{{foo.[bar]}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); }); it('allows multiple path literals on a line with []', function() { var result = tokenize("{{foo.[bar]}}{{foo.[baz]}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'CLOSE', 'OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'CLOSE', 'OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); }); it('tokenizes {{.}} as OPEN ID CLOSE', function() { var result = tokenize("{{.}}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE']); }); it('tokenizes a path as "OPEN (ID SEP)* ID CLOSE"', function() { var result = tokenize("{{../foo/bar}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); - result[1].should.be_token("ID", ".."); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", ".."); }); it('tokenizes a path with .. as a parent path', function() { var result = tokenize("{{../foo.bar}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); - result[1].should.be_token("ID", ".."); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", ".."); }); it('tokenizes a path with this/foo as OPEN ID SEP ID CLOSE', function() { var result = tokenize("{{this/foo}}"); - result.should.match_tokens(['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "this"); - result[3].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "this"); + shouldBeToken(result[3], "ID", "foo"); }); it('tokenizes a simple mustache with spaces as "OPEN ID CLOSE"', function() { var result = tokenize("{{ foo }}"); - result.should.match_tokens(['OPEN', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); }); it('tokenizes a simple mustache with line breaks as "OPEN ID ID CLOSE"', function() { var result = tokenize("{{ foo \n bar }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); }); it('tokenizes raw content as "CONTENT"', function() { var result = tokenize("foo {{ bar }} baz"); - result.should.match_tokens(['CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT']); - result[0].should.be_token("CONTENT", "foo "); - result[4].should.be_token("CONTENT", " baz"); + shouldMatchTokens(result, ['CONTENT', 'OPEN', 'ID', 'CLOSE', 'CONTENT']); + shouldBeToken(result[0], "CONTENT", "foo "); + shouldBeToken(result[4], "CONTENT", " baz"); }); it('tokenizes a partial as "OPEN_PARTIAL ID CLOSE"', function() { var result = tokenize("{{> foo}}"); - result.should.match_tokens(['OPEN_PARTIAL', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_PARTIAL', 'ID', 'CLOSE']); }); it('tokenizes a partial with context as "OPEN_PARTIAL ID ID CLOSE"', function() { var result = tokenize("{{> foo bar }}"); - result.should.match_tokens(['OPEN_PARTIAL', 'ID', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_PARTIAL', 'ID', 'ID', 'CLOSE']); }); it('tokenizes a partial without spaces as "OPEN_PARTIAL ID CLOSE"', function() { var result = tokenize("{{>foo}}"); - result.should.match_tokens(['OPEN_PARTIAL', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_PARTIAL', 'ID', 'CLOSE']); }); it('tokenizes a partial space at the }); as "OPEN_PARTIAL ID CLOSE"', function() { var result = tokenize("{{>foo }}"); - result.should.match_tokens(['OPEN_PARTIAL', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_PARTIAL', 'ID', 'CLOSE']); }); it('tokenizes a partial space at the }); as "OPEN_PARTIAL ID CLOSE"', function() { var result = tokenize("{{>foo/bar.baz }}"); - result.should.match_tokens(['OPEN_PARTIAL', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_PARTIAL', 'ID', 'SEP', 'ID', 'SEP', 'ID', 'CLOSE']); }); it('tokenizes a comment as "COMMENT"', function() { var result = tokenize("foo {{! this is a comment }} bar {{ baz }}"); - result.should.match_tokens(['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[1].should.be_token("COMMENT", " this is a comment "); + shouldMatchTokens(result, ['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldBeToken(result[1], "COMMENT", " this is a comment "); }); it('tokenizes a block comment as "COMMENT"', function() { var result = tokenize("foo {{!-- this is a {{comment}} --}} bar {{ baz }}"); - result.should.match_tokens(['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[1].should.be_token("COMMENT", " this is a {{comment}} "); + shouldMatchTokens(result, ['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldBeToken(result[1], "COMMENT", " this is a {{comment}} "); }); it('tokenizes a block comment with whitespace as "COMMENT"', function() { var result = tokenize("foo {{!-- this is a\n{{comment}}\n--}} bar {{ baz }}"); - result.should.match_tokens(['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); - result[1].should.be_token("COMMENT", " this is a\n{{comment}}\n"); + shouldMatchTokens(result, ['CONTENT', 'COMMENT', 'CONTENT', 'OPEN', 'ID', 'CLOSE']); + shouldBeToken(result[1], "COMMENT", " this is a\n{{comment}}\n"); }); it('tokenizes open and closing blocks as OPEN_BLOCK, ID, CLOSE ..., OPEN_ENDBLOCK ID CLOSE', function() { var result = tokenize("{{#foo}}content{{/foo}}"); - result.should.match_tokens(['OPEN_BLOCK', 'ID', 'CLOSE', 'CONTENT', 'OPEN_ENDBLOCK', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN_BLOCK', 'ID', 'CLOSE', 'CONTENT', 'OPEN_ENDBLOCK', 'ID', 'CLOSE']); }); it('tokenizes inverse sections as "OPEN_INVERSE CLOSE"', function() { - tokenize("{{^}}").should.match_tokens(['OPEN_INVERSE', 'CLOSE']); - tokenize("{{else}}").should.match_tokens(['OPEN_INVERSE', 'CLOSE']); - tokenize("{{ else }}").should.match_tokens(['OPEN_INVERSE', 'CLOSE']); + shouldMatchTokens(tokenize("{{^}}"), ['OPEN_INVERSE', 'CLOSE']); + shouldMatchTokens(tokenize("{{else}}"), ['OPEN_INVERSE', 'CLOSE']); + shouldMatchTokens(tokenize("{{ else }}"), ['OPEN_INVERSE', 'CLOSE']); }); it('tokenizes inverse sections with ID as "OPEN_INVERSE ID CLOSE"', function() { var result = tokenize("{{^foo}}"); - result.should.match_tokens(['OPEN_INVERSE', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN_INVERSE', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); }); it('tokenizes inverse sections with ID and spaces as "OPEN_INVERSE ID CLOSE"', function() { var result = tokenize("{{^ foo }}"); - result.should.match_tokens(['OPEN_INVERSE', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN_INVERSE', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); }); it('tokenizes mustaches with params as "OPEN ID ID ID CLOSE"', function() { var result = tokenize("{{ foo bar baz }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'CLOSE']); - result[1].should.be_token("ID", "foo"); - result[2].should.be_token("ID", "bar"); - result[3].should.be_token("ID", "baz"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'CLOSE']); + shouldBeToken(result[1], "ID", "foo"); + shouldBeToken(result[2], "ID", "bar"); + shouldBeToken(result[3], "ID", "baz"); }); it('tokenizes mustaches with String params as "OPEN ID ID STRING CLOSE"', function() { var result = tokenize("{{ foo bar \"baz\" }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); - result[3].should.be_token("STRING", "baz"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); + shouldBeToken(result[3], "STRING", "baz"); }); it('tokenizes mustaches with String params using single quotes as "OPEN ID ID STRING CLOSE"', function() { var result = tokenize("{{ foo bar \'baz\' }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); - result[3].should.be_token("STRING", "baz"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); + shouldBeToken(result[3], "STRING", "baz"); }); it('tokenizes String params with spaces inside as "STRING"', function() { var result = tokenize("{{ foo bar \"baz bat\" }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); - result[3].should.be_token("STRING", "baz bat"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']); + shouldBeToken(result[3], "STRING", "baz bat"); }); it('tokenizes String params with escapes quotes as STRING', function() { var result = tokenize('{{ foo "bar\\"baz" }}'); - result.should.match_tokens(['OPEN', 'ID', 'STRING', 'CLOSE']); - result[2].should.be_token("STRING", 'bar"baz'); + shouldMatchTokens(result, ['OPEN', 'ID', 'STRING', 'CLOSE']); + shouldBeToken(result[2], "STRING", 'bar"baz'); }); it('tokenizes String params using single quotes with escapes quotes as STRING', function() { var result = tokenize("{{ foo 'bar\\'baz' }}"); - result.should.match_tokens(['OPEN', 'ID', 'STRING', 'CLOSE']); - result[2].should.be_token("STRING", "bar'baz"); + shouldMatchTokens(result, ['OPEN', 'ID', 'STRING', 'CLOSE']); + shouldBeToken(result[2], "STRING", "bar'baz"); }); it('tokenizes numbers', function() { var result = tokenize('{{ foo 1 }}'); - result.should.match_tokens(['OPEN', 'ID', 'INTEGER', 'CLOSE']); - result[2].should.be_token("INTEGER", "1"); + shouldMatchTokens(result, ['OPEN', 'ID', 'INTEGER', 'CLOSE']); + shouldBeToken(result[2], "INTEGER", "1"); result = tokenize('{{ foo -1 }}'); - result.should.match_tokens(['OPEN', 'ID', 'INTEGER', 'CLOSE']); - result[2].should.be_token("INTEGER", "-1"); + shouldMatchTokens(result, ['OPEN', 'ID', 'INTEGER', 'CLOSE']); + shouldBeToken(result[2], "INTEGER", "-1"); }); it('tokenizes booleans', function() { var result = tokenize('{{ foo true }}'); - result.should.match_tokens(['OPEN', 'ID', 'BOOLEAN', 'CLOSE']); - result[2].should.be_token("BOOLEAN", "true"); + shouldMatchTokens(result, ['OPEN', 'ID', 'BOOLEAN', 'CLOSE']); + shouldBeToken(result[2], "BOOLEAN", "true"); result = tokenize('{{ foo false }}'); - result.should.match_tokens(['OPEN', 'ID', 'BOOLEAN', 'CLOSE']); - result[2].should.be_token("BOOLEAN", "false"); + shouldMatchTokens(result, ['OPEN', 'ID', 'BOOLEAN', 'CLOSE']); + shouldBeToken(result[2], "BOOLEAN", "false"); }); it('tokenizes hash arguments', function() { var result = tokenize("{{ foo bar=baz }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); result = tokenize("{{ foo bar baz=bat }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); result = tokenize("{{ foo bar baz=1 }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'INTEGER', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'INTEGER', 'CLOSE']); result = tokenize("{{ foo bar baz=true }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'BOOLEAN', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'BOOLEAN', 'CLOSE']); result = tokenize("{{ foo bar baz=false }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'BOOLEAN', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'BOOLEAN', 'CLOSE']); result = tokenize("{{ foo bar\n baz=bat }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'CLOSE']); result = tokenize("{{ foo bar baz=\"bat\" }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'STRING', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'STRING', 'CLOSE']); result = tokenize("{{ foo bar baz=\"bat\" bam=wot }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'STRING', 'ID', 'EQUALS', 'ID', 'CLOSE']); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'STRING', 'ID', 'EQUALS', 'ID', 'CLOSE']); result = tokenize("{{foo omg bar=baz bat=\"bam\"}}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'ID', 'EQUALS', 'STRING', 'CLOSE']); - result[2].should.be_token("ID", "omg"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'ID', 'EQUALS', 'ID', 'ID', 'EQUALS', 'STRING', 'CLOSE']); + shouldBeToken(result[2], "ID", "omg"); }); it('tokenizes special @ identifiers', function() { var result = tokenize("{{ @foo }}"); - result.should.match_tokens(['OPEN', 'DATA', 'ID', 'CLOSE']); - result[2].should.be_token("ID", "foo"); + shouldMatchTokens(result, ['OPEN', 'DATA', 'ID', 'CLOSE']); + shouldBeToken(result[2], "ID", "foo"); result = tokenize("{{ foo @bar }}"); - result.should.match_tokens(['OPEN', 'ID', 'DATA', 'ID', 'CLOSE']); - result[3].should.be_token("ID", "bar"); + shouldMatchTokens(result, ['OPEN', 'ID', 'DATA', 'ID', 'CLOSE']); + shouldBeToken(result[3], "ID", "bar"); result = tokenize("{{ foo bar=@baz }}"); - result.should.match_tokens(['OPEN', 'ID', 'ID', 'EQUALS', 'DATA', 'ID', 'CLOSE']); - result[5].should.be_token("ID", "baz"); + shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'EQUALS', 'DATA', 'ID', 'CLOSE']); + shouldBeToken(result[5], "ID", "baz"); }); it('does not time out in a mustache with a single } followed by EOF', function() { - tokenize("{{foo}").should.match_tokens(['OPEN', 'ID']); + shouldMatchTokens(tokenize("{{foo}"), ['OPEN', 'ID']); }); it('does not time out in a mustache when invalid ID characters are used', function() { - tokenize("{{foo & }}").should.match_tokens(['OPEN', 'ID']); + shouldMatchTokens(tokenize("{{foo & }}"), ['OPEN', 'ID']); }); }); diff --git a/spec/utils.js b/spec/utils.js index 5eee69e..390ad05 100644 --- a/spec/utils.js +++ b/spec/utils.js @@ -1,11 +1,13 @@ -/*global shouldCompileTo */ +/*global Handlebars, shouldCompileTo */ describe('utils', function() { describe('#SafeString', function() { it("constructing a safestring from a string and checking its type", function() { var safe = new Handlebars.SafeString("testing 1, 2, 3"); - safe.should.be.instanceof(Handlebars.SafeString); - (safe == "testing 1, 2, 3").should.equal(true, "SafeString is equivalent to its underlying string"); + if (!(safe instanceof Handlebars.SafeString)) { + throw new Error('Must be instance of SafeString'); + } + equals(safe == 'testing 1, 2, 3', true, 'SafeString is equivalent to its underlying string'); }); it("it should not escape SafeString properties", function() { @@ -17,41 +19,41 @@ describe('utils', function() { describe('#escapeExpression', function() { it('shouhld escape html', function() { - Handlebars.Utils.escapeExpression('foo<&"\'>').should.equal('foo<&"'>'); + equals(Handlebars.Utils.escapeExpression('foo<&"\'>'), 'foo<&"'>'); }); it('should not escape SafeString', function() { var string = new Handlebars.SafeString('foo<&"\'>'); - Handlebars.Utils.escapeExpression(string).should.equal('foo<&"\'>'); + equals(Handlebars.Utils.escapeExpression(string), 'foo<&"\'>'); }); it('should handle falsy', function() { - Handlebars.Utils.escapeExpression('').should.equal(''); - Handlebars.Utils.escapeExpression(undefined).should.equal(''); - Handlebars.Utils.escapeExpression(null).should.equal(''); - Handlebars.Utils.escapeExpression(false).should.equal(''); + equals(Handlebars.Utils.escapeExpression(''), ''); + equals(Handlebars.Utils.escapeExpression(undefined), ''); + equals(Handlebars.Utils.escapeExpression(null), ''); + equals(Handlebars.Utils.escapeExpression(false), ''); - Handlebars.Utils.escapeExpression(0).should.equal('0'); + equals(Handlebars.Utils.escapeExpression(0), '0'); }); it('should handle empty objects', function() { - Handlebars.Utils.escapeExpression({}).should.equal({}.toString()); - Handlebars.Utils.escapeExpression([]).should.equal([].toString()); + equals(Handlebars.Utils.escapeExpression({}), {}.toString()); + equals(Handlebars.Utils.escapeExpression([]), [].toString()); }); }); describe('#isEmpty', function() { it('should not be empty', function() { - Handlebars.Utils.isEmpty(undefined).should.equal(true); - Handlebars.Utils.isEmpty(null).should.equal(true); - Handlebars.Utils.isEmpty(false).should.equal(true); - Handlebars.Utils.isEmpty('').should.equal(true); - Handlebars.Utils.isEmpty([]).should.equal(true); + equals(Handlebars.Utils.isEmpty(undefined), true); + equals(Handlebars.Utils.isEmpty(null), true); + equals(Handlebars.Utils.isEmpty(false), true); + equals(Handlebars.Utils.isEmpty(''), true); + equals(Handlebars.Utils.isEmpty([]), true); }); it('should be empty', function() { - Handlebars.Utils.isEmpty(0).should.equal(false); - Handlebars.Utils.isEmpty([1]).should.equal(false); - Handlebars.Utils.isEmpty('foo').should.equal(false); - Handlebars.Utils.isEmpty({bar: 1}).should.equal(false); + equals(Handlebars.Utils.isEmpty(0), false); + equals(Handlebars.Utils.isEmpty([1]), false); + equals(Handlebars.Utils.isEmpty('foo'), false); + equals(Handlebars.Utils.isEmpty({bar: 1}), false); }); }); }); |