diff options
author | kpdecker <kpdecker@gmail.com> | 2011-07-30 15:25:25 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2011-07-30 15:25:25 -0500 |
commit | 3d9e5070f5261ea8da99ff30bc7f944e4d6b5e8d (patch) | |
tree | a25359720abd389cf68a69e4458f96c866a946eb /spec/qunit_spec.js | |
parent | 82a1b0e85c511d3d0642a0ca52dc5e2b1e90e627 (diff) | |
download | handlebars.js-3d9e5070f5261ea8da99ff30bc7f944e4d6b5e8d.zip handlebars.js-3d9e5070f5261ea8da99ff30bc7f944e4d6b5e8d.tar.gz handlebars.js-3d9e5070f5261ea8da99ff30bc7f944e4d6b5e8d.tar.bz2 |
Move mismatched block test from quint to parser tests.
Diffstat (limited to 'spec/qunit_spec.js')
-rw-r--r-- | spec/qunit_spec.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/qunit_spec.js b/spec/qunit_spec.js index 3b08bc5..2fbdfab 100644 --- a/spec/qunit_spec.js +++ b/spec/qunit_spec.js @@ -202,14 +202,6 @@ test("empty block", function() { "Arrays ignore the contents when empty"); }); -test("incorrectly matched blocks", function() { - var string = "{{#goodbyes}}{{/hellos}}"; - - shouldThrow(function() { - Handlebars.compile(string); - }, Handlebars.Exception, "Incorrectly matched blocks return an exception at compile time."); -}); - test("nested iteration", function() { }); |