# File lib/fog/workflow/openstack/v2/requests/list_executions.rb, line 16
          def list_executions
            response = Excon::Response.new
            response.status = 200
            response.body = {"executions" =>
                                             [{"state" => "ERROR", "id" => "1111"},
                                              {"state" => "RUNNING", "id" => "2222"}]}
            response
          end