| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 | (function() {
  'use strict';
  var assert = chai.assert;
  it('cache', function() {
    var cache = new LuigiTemplate.Cache({
      foo: 'foo%{bar}',
    });
    var r = cache.run('foo', {
      bar: 'foo',
    });
    assert.equal(r, 'foofoo');
  });
  it('cache with array', function() {
    var cache = new LuigiTemplate.Cache({
      foo: ['foo%{bar}'],
    });
    var r = cache.run('foo', {
      bar: 'foo',
    });
    assert.equal(r, 'foofoo');
  });
  it('cache singleton', function() {
    var cache = LuigiTemplate.cache({
      foo: 'foo%{bar}',
    });
    var r = cache.run('foo', {
      bar: 'foo',
    });
    assert.equal(r, 'foofoo');
  });
  it('cache with custom filters', function() {
    var cache = new LuigiTemplate.Cache({
      foo: ['foo%{bar | barify}'],
    }, {
      barify: function(s) {
        return 'bar-' + s + '-bar';
      },
    });
    var r = cache.run('foo', {
      bar: 'foo',
    });
    assert.equal(r, 'foobar-foo-bar');
  });
})();
 |