spec/api/glossaries_api_spec.rb in phrase-2.7.1 vs spec/api/glossaries_api_spec.rb in phrase-2.7.2
- old
+ new
@@ -19,12 +19,12 @@
expect(@api_instance).to be_instance_of(Phrase::GlossariesApi)
end
end
# unit tests for glossaries_list
- # List glossaries
- # List all glossaries the current user has access to.
+ # List term bases
+ # List all term bases (previously: glossaries) the current user has access to.
# @param account_id Account ID
# @param [Hash] opts the optional parameters
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
# @option opts [Integer] :page Page number
# @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
@@ -34,12 +34,12 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for glossary_create
- # Create a glossary
- # Create a new glossary.
+ # Create a term base
+ # Create a new term base (previously: glossary).
# @param account_id Account ID
# @param glossary_create_parameters
# @param [Hash] opts the optional parameters
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
# @return [Glossary]
@@ -48,12 +48,12 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for glossary_delete
- # Delete a glossary
- # Delete an existing glossary.
+ # Delete a term base
+ # Delete an existing term base (previously: glossary).
# @param account_id Account ID
# @param id ID
# @param [Hash] opts the optional parameters
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
# @return [nil]
@@ -62,12 +62,12 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for glossary_show
- # Get a single glossary
- # Get details on a single glossary.
+ # Get a single term base
+ # Get details on a single term base (previously: glossary).
# @param account_id Account ID
# @param id ID
# @param [Hash] opts the optional parameters
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
# @return [Glossary]
@@ -76,11 +76,11 @@
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
# unit tests for glossary_update
- # Update a glossary
- # Update an existing glossary.
+ # Update a term base
+ # Update an existing term base (previously: glossary).
# @param account_id Account ID
# @param id ID
# @param glossary_update_parameters
# @param [Hash] opts the optional parameters
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)