it('should work for numbers ending in 3', function () {
    expect(tpl({ a: 3 })).to.equal('3rd');
    expect(tpl({ a: 13 })).to.equal('13th');
    expect(tpl({ a: 23 })).to.equal('23rd');
  });