lab.test('pluralizes term when num is zero', function (done) {
    Code.expect(pluralize(0, 'thing')).to.equal('0 things');

    done();
  });