diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-09-10 23:18:11 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-09-10 23:18:11 -0400 |
commit | c5f5795bef35f48b44d105168e7bbe353c71ecc8 (patch) | |
tree | 45046c7aa9d8f434b1a605369e277f2a204379ca /js/test | |
parent | 07ad63c1b2d3cc8128b238b19be192ffb6d1a44a (diff) | |
download | luigi-template-c5f5795bef35f48b44d105168e7bbe353c71ecc8.tar.bz2 luigi-template-c5f5795bef35f48b44d105168e7bbe353c71ecc8.zip |
js: add cache callback, template callback, and singleton run callback tests
Diffstat (limited to 'js/test')
-rw-r--r-- | js/test/cache.js | 13 | ||||
-rw-r--r-- | js/test/template.js | 25 |
2 files changed, 38 insertions, 0 deletions
diff --git a/js/test/cache.js b/js/test/cache.js index 9395223..710488a 100644 --- a/js/test/cache.js +++ b/js/test/cache.js @@ -38,6 +38,19 @@ assert.equal(r, 'foofoo'); }); + it('cache run with callback', function() { + var r = []; + + Luigi.cache({ + foo: 'foo%{bar}', + }).run('foo', { + bar: 'foo', + }, function(s) { + r.push(s); + }); + + assert.equal(r.join(''), 'foofoo'); + }); it('cache with custom filters', function() { var cache = Luigi.cache({ diff --git a/js/test/template.js b/js/test/template.js index a364c61..ebab447 100644 --- a/js/test/template.js +++ b/js/test/template.js @@ -30,4 +30,29 @@ assert.equal(r, 'foofoofoo'); }); + + it('run with callback', function() { + var t = new Luigi.Template("%{bar}foo%{bar}"), + r = []; + + t.run({ + bar: 'foo', + }, function(s) { + r.push(s); + }); + + assert.equal(r.join(''), 'foofoofoo'); + }); + + it('run singleton with callback', function() { + var r = []; + + Luigi.run('%{bar}foo%{bar}', { + bar: 'foo', + }, null, function(s) { + r.push(s); + }); + + assert.equal(r.join(''), 'foofoofoo'); + }); })(); |