describe('strings.kebab(string)', function () {
  it('should return true if the string is kebab case', function () {
    assert(kebab('foo-bar'));
  });