describe(name, function () {
  it('displays all items where displaySelf is truthy', function () {
    expect(tpl({a: [{ displaySelf: true, text: '1' }, { displaySelf: true, text: '2' }]})).to.equal('12');
  });