it('should work for numbers ending in 2', function () {
    expect(tpl({ a: 2 })).to.equal('2nd');
    expect(tpl({ a: 12 })).to.equal('12th');
    expect(tpl({ a: 22 })).to.equal('22nd');
  });