spec/api/attributes_api_spec.rb in sib-api-v3-sdk-5.3.0 vs spec/api/attributes_api_spec.rb in sib-api-v3-sdk-5.4.0
- old
+ new
@@ -31,11 +31,11 @@
expect(@instance).to be_instance_of(SibApiV3Sdk::AttributesApi)
end
end
# unit tests for create_attribute
- # Creates contact attribute
+ # Create contact attribute
# @param attribute_category Category of the attribute
# @param attribute_name Name of the attribute
# @param create_attribute Values to create an attribute
# @param [Hash] opts the optional parameters
# @return [nil]
@@ -44,11 +44,11 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for delete_attribute
- # Deletes an attribute
+ # Delete an attribute
# @param attribute_category Category of the attribute
# @param attribute_name Name of the existing attribute
# @param [Hash] opts the optional parameters
# @return [nil]
describe 'delete_attribute test' do
@@ -56,20 +56,20 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for get_attributes
- # Lists all attributes
+ # List all attributes
# @param [Hash] opts the optional parameters
# @return [GetAttributes]
describe 'get_attributes test' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for update_attribute
- # Updates contact attribute
+ # Update contact attribute
# @param attribute_category Category of the attribute
# @param attribute_name Name of the existing attribute
# @param update_attribute Values to update an attribute
# @param [Hash] opts the optional parameters
# @return [nil]