diff options
-rw-r--r-- | spec/qunit_spec.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/qunit_spec.js b/spec/qunit_spec.js index 479f64b..9832d60 100644 --- a/spec/qunit_spec.js +++ b/spec/qunit_spec.js @@ -1404,6 +1404,10 @@ test('GS-428: Nested if else rendering', function() { shouldCompileTo(failingTemplate, [{}, helpers], ' Expected '); }); +test('GH-458: Scoped this identifier', function() { + shouldCompileTo('{{./foo}}', {foo: 'bar'}, 'bar'); +}); + suite('Utils'); test('escapeExpression', function() { |