summaryrefslogtreecommitdiffstats
path: root/spec/basic.js
Commit message (Collapse)AuthorAgeFilesLines
* Render false literal as “false”kpdecker2014-08-251-0/+8
| | | Fixes #827
* Fix missing parameters for pathed mustacheskpdecker2014-01-171-0/+28
| | | Fixes #658
* Use shouldThrow helper for test assertskpdecker2013-12-231-4/+5
|
* Protect context-lookups from undefined valueskpdecker2013-11-031-0/+6
| | | | Fixes #166 Fixes #587
* Merge branch 'fix-issue-599' of github.com:laurie71/handlebars.js into ↵kpdecker2013-10-141-0/+12
|\ | | | | | | laurie71-fix-issue-599
| * Test cases for #599Laurie Harper2013-08-281-0/+12
| |
* | Fix "\\" escapingDaniel Marcotte2013-10-131-0/+2
| | | | | | | | | | Previously, "\\{{foo}}" would only result in the desired "\fooValue" if it was at the beginning of the file or immediately after a close stache.
* | Fix test runners under nodekpdecker2013-10-091-1/+1
| |
* | Make the Handlebars environment into an objectYehuda Katz2013-07-261-0/+6
|/ | | | | | | | The idea is that the environment wraps up the mutable stuff in Handlebars (like the helpers) and that you could theoretically create a new one at any time and pass it in to Handlebars.template. Every test makes a new environment and uses it in template compilation.
* Refactor qunit unit testskpdecker2013-06-011-0/+162
Allows for testing node, browser, and precompiled modes in the node tests. Also reorganizes the qunit spec file to provide better organization.