it('should work for numbers ending in 1', function () {
    expect(tpl({ a: 1 })).to.equal('1st');
    expect(tpl({ a: 11 })).to.equal('11th');
    expect(tpl({ a: 21 })).to.equal('21st');
  });