it('trims whitespace when non-whitespace string is shorter than given length', function () {
    expect(tpl({str: '  foo  ', len: 5})).to.equal('foo');
  });