it('handles numbers and strings', function () {
    expect(tpl({x: '99.9'})).to.equal('100');
    expect(tpl({x: 99.9})).to.equal('100');
  });