Sha256: 32ae0e9de44e9bf9deae3acb01cf24b614518fd8f8f388b6327ccbc17d681779

Contents?: true

Size: 810 Bytes

Versions: 3

Compression:

Stored size: 810 Bytes

Contents

<%- assert_locals service -%>
# frozen_string_literal: true

<%= render partial: "shared/license" %>
require "helper"

require "gapic/grpc/service_stub"

require "<%= service.proto_service_require %>"
require "<%= service.proto_services_require %>"
require "<%= service.service_require %>"

class <%= service.operations_name_full %>Test < Minitest::Test
<%= indent render(partial: "service/test/method/setup"), 2 %>

<% service.lro_service.methods.each do |method| %>
<%= indent render(partial: "service/test/method/#{method.kind}",
                  locals: { client_name_full: service.operations_name_full, method: method }), 2 %>

<% end %>
<%= indent render(partial: "service/test/method/configure",
                  locals: { service: service, client_name_full: service.operations_name_full }), 2 %>
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gapic-generator-0.6.0 templates/default/service/test/client_operations.erb
gapic-generator-0.5.1 templates/default/service/test/client_operations.erb
gapic-generator-0.5.0 templates/default/service/test/client_operations.erb