Skip to content

Commit

Permalink
Uncomment client specs now that they are passing
Browse files Browse the repository at this point in the history
  • Loading branch information
jterapin committed Dec 23, 2024
1 parent 732940e commit 5e7e3a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gems/smithy/spec/interfaces/client/client_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
expect(subject).to respond_to(:get_city, :get_current_time, :get_forecast, :list_cities)
end

# it 'builds input for operations' do
# input = subject.send(:build_input, :get_city, { id: 1 })
# expect(input).to be_a(Smithy::Client::Input)
# end
it 'builds input for operations' do
input = subject.send(:build_input, :get_city, { id: 1 })
expect(input).to be_a(Smithy::Client::Input)
end

# it 'can call operations' do
# subject.get_city(id: 1)
# end
it 'can call operations' do
subject.get_city(id: 1)
end
end

0 comments on commit 5e7e3a9

Please sign in to comment.