describe(name, function () {
  it('is false if all conditionals are truthy', function () {
    expect(tpl({a: true, b: true})).to.equal('no');
    expect(tpl({a: 'abc', b: 123})).to.equal('no');
  });