(string)
| 5 | |
| 6 | describe('#equals', function() { |
| 7 | function compile(string) { |
| 8 | var ast = Handlebars.parse(string); |
| 9 | return new Handlebars.Compiler().compile(ast, {}); |
| 10 | } |
| 11 | |
| 12 | it('should treat as equal', function() { |
| 13 | equal(compile('foo').equals(compile('foo')), true); |
no outgoing calls
no test coverage detected