You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible for stub_data to translate the Ruby literals back/forth into the Aws::DynamoDB::Types structs?
In normal use, I'd expect client.get_item(...).item to be a hash with Ruby literals like { 'id' => 'some string' } by virtue of client.config.simple_attributes. So for my specs, I'd like to generate stub data of the same type that my actual code is expecting to process. Is there another way to do this that I can't figure out, or should Aws::DynamoDB::Client#stub_data be altered?
The text was updated successfully, but these errors were encountered:
Would it be possible for
stub_data
to translate the Ruby literals back/forth into theAws::DynamoDB::Types
structs?In normal use, I'd expect
client.get_item(...).item
to be a hash with Ruby literals like{ 'id' => 'some string' }
by virtue ofclient.config.simple_attributes
. So for my specs, I'd like to generate stub data of the same type that my actual code is expecting to process. Is there another way to do this that I can't figure out, or shouldAws::DynamoDB::Client#stub_data
be altered?The text was updated successfully, but these errors were encountered: