# File lib/gitlab/client/groups.rb, line 39
    def create_group(name, path, options={})
      body = { name: name, path: path }.merge(options)
      post("/groups", body: body)
    end