Skip to content

Commit

Permalink
Added tag parens test
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 16, 2010
1 parent 8efd1f8 commit 75d8858
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/jade.test.js
Expand Up @@ -227,8 +227,9 @@ module.exports = {
},

'test tag text': function(assert){
assert.equal('some random text ', render('| some random text'), 'Test root text');
assert.equal('<p>some random text</p>', render('p some random text'), 'Test basic tag text');
assert.equal('some random text ', render('| some random text'));
assert.equal('<p>some random text</p>', render('p some random text'));
assert.equal('<p>(parens)</p>', render('p (parens)'));
},

'test tag text block': function(assert){
Expand Down

0 comments on commit 75d8858

Please sign in to comment.