# File lib/fog/workflow/openstack/v2/requests/list_tasks.rb, line 16
          def list_tasks(_workflow_execution_id)
            response = Excon::Response.new
            response.status = 200
            response.body = {"tasks" =>
                                        [{"name" => "task1", "description" => "d1"},
                                         {"name" => "task2", "description" => "d2"}]}
            response
          end