# File lib/fog/compute/openstack/requests/list_hypervisors.rb, line 16
        def list_hypervisors(_options = {})
          response = Excon::Response.new
          response.status = 200
          response.body = {'hypervisors' => [
            {"hypervisor_hostname" => "fake-mini", "id" => 2, "state" => "up", "status" => "enabled"}
          ]}
          response
        end