feature(bower) Util.render -> rendy

This commit is contained in:
coderaiser 2015-05-21 09:33:25 -04:00
parent cb219ae64e
commit da2768d56b
17 changed files with 315 additions and 57 deletions

View file

@ -81,18 +81,6 @@
});
});
describe('render', function() {
it('should render template with object of params', function() {
var WORD = 'hello world',
word = Util.render('hello {{ name }}', {
name: 'world'
});
WORD.should.equal(word);
});
});
});
})();