trinsic_api 2.1.0 → 2.1.1.pre.alpha2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,231 @@
1
+ =begin
2
+ #Trinsic API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.13.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module TrinsicApi
17
+ class Match
18
+ attr_accessor :probability_value
19
+
20
+ attr_accessor :boolean_value
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'probability_value' => :'probabilityValue',
26
+ :'boolean_value' => :'booleanValue'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'probability_value' => :'Float',
44
+ :'boolean_value' => :'Boolean'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ :'probability_value',
52
+ :'boolean_value'
53
+ ])
54
+ end
55
+
56
+ # Initializes the object
57
+ # @param [Hash] attributes Model attributes in the form of hash
58
+ def initialize(attributes = {})
59
+ if (!attributes.is_a?(Hash))
60
+ fail ArgumentError, "The input argument (attributes) must be a hash in `TrinsicApi::Match` initialize method"
61
+ end
62
+
63
+ # check to see if the attribute exists and convert string to symbol for hash key
64
+ acceptable_attribute_map = self.class.acceptable_attribute_map
65
+ attributes = attributes.each_with_object({}) { |(k, v), h|
66
+ if (!acceptable_attribute_map.key?(k.to_sym))
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `TrinsicApi::Match`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
68
+ end
69
+ h[k.to_sym] = v
70
+ }
71
+
72
+ if attributes.key?(:'probability_value')
73
+ self.probability_value = attributes[:'probability_value']
74
+ end
75
+
76
+ if attributes.key?(:'boolean_value')
77
+ self.boolean_value = attributes[:'boolean_value']
78
+ end
79
+ end
80
+
81
+ # Show invalid properties with the reasons. Usually used together with valid?
82
+ # @return Array for valid properties with the reasons
83
+ def list_invalid_properties
84
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
85
+ invalid_properties = Array.new
86
+ invalid_properties
87
+ end
88
+
89
+ # Check to see if the all the properties in the model are valid
90
+ # @return true if the model is valid
91
+ def valid?
92
+ warn '[DEPRECATED] the `valid?` method is obsolete'
93
+ true
94
+ end
95
+
96
+ # Checks equality by comparing each attribute.
97
+ # @param [Object] Object to be compared
98
+ def ==(o)
99
+ return true if self.equal?(o)
100
+ self.class == o.class &&
101
+ probability_value == o.probability_value &&
102
+ boolean_value == o.boolean_value
103
+ end
104
+
105
+ # @see the `==` method
106
+ # @param [Object] Object to be compared
107
+ def eql?(o)
108
+ self == o
109
+ end
110
+
111
+ # Calculates hash code according to all attributes.
112
+ # @return [Integer] Hash code
113
+ def hash
114
+ [probability_value, boolean_value].hash
115
+ end
116
+
117
+ # Builds the object from hash
118
+ # @param [Hash] attributes Model attributes in the form of hash
119
+ # @return [Object] Returns the model itself
120
+ def self.build_from_hash(attributes)
121
+ return nil unless attributes.is_a?(Hash)
122
+ attributes = attributes.transform_keys(&:to_sym)
123
+ transformed_hash = {}
124
+ openapi_types.each_pair do |key, type|
125
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
126
+ transformed_hash["#{key}"] = nil
127
+ elsif type =~ /\AArray<(.*)>/i
128
+ # check to ensure the input is an array given that the attribute
129
+ # is documented as an array but the input is not
130
+ if attributes[attribute_map[key]].is_a?(Array)
131
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
132
+ end
133
+ elsif !attributes[attribute_map[key]].nil?
134
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
135
+ end
136
+ end
137
+ new(transformed_hash)
138
+ end
139
+
140
+ # Deserializes the data based on type
141
+ # @param string type Data type
142
+ # @param string value Value to be deserialized
143
+ # @return [Object] Deserialized data
144
+ def self._deserialize(type, value)
145
+ case type.to_sym
146
+ when :Time
147
+ Time.parse(value)
148
+ when :Date
149
+ Date.parse(value)
150
+ when :String
151
+ value.to_s
152
+ when :Integer
153
+ value.to_i
154
+ when :Float
155
+ value.to_f
156
+ when :Boolean
157
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
158
+ true
159
+ else
160
+ false
161
+ end
162
+ when :Object
163
+ # generic object (usually a Hash), return directly
164
+ value
165
+ when /\AArray<(?<inner_type>.+)>\z/
166
+ inner_type = Regexp.last_match[:inner_type]
167
+ value.map { |v| _deserialize(inner_type, v) }
168
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
169
+ k_type = Regexp.last_match[:k_type]
170
+ v_type = Regexp.last_match[:v_type]
171
+ {}.tap do |hash|
172
+ value.each do |k, v|
173
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
174
+ end
175
+ end
176
+ else # model
177
+ # models (e.g. Pet) or oneOf
178
+ klass = TrinsicApi.const_get(type)
179
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
180
+ end
181
+ end
182
+
183
+ # Returns the string representation of the object
184
+ # @return [String] String presentation of the object
185
+ def to_s
186
+ to_hash.to_s
187
+ end
188
+
189
+ # to_body is an alias to to_hash (backward compatibility)
190
+ # @return [Hash] Returns the object in the form of hash
191
+ def to_body
192
+ to_hash
193
+ end
194
+
195
+ # Returns the object in the form of hash
196
+ # @return [Hash] Returns the object in the form of hash
197
+ def to_hash
198
+ hash = {}
199
+ self.class.attribute_map.each_pair do |attr, param|
200
+ value = self.send(attr)
201
+ if value.nil?
202
+ is_nullable = self.class.openapi_nullable.include?(attr)
203
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
204
+ end
205
+
206
+ hash[param] = _to_hash(value)
207
+ end
208
+ hash
209
+ end
210
+
211
+ # Outputs non-array value in the form of hash
212
+ # For object, use to_hash. Otherwise, just return the value
213
+ # @param [Object] value Any valid value
214
+ # @return [Hash] Returns the value in the form of hash
215
+ def _to_hash(value)
216
+ if value.is_a?(Array)
217
+ value.compact.map { |v| _to_hash(v) }
218
+ elsif value.is_a?(Hash)
219
+ {}.tap do |hash|
220
+ value.each { |k, v| hash[k] = _to_hash(v) }
221
+ end
222
+ elsif value.respond_to? :to_hash
223
+ value.to_hash
224
+ else
225
+ value
226
+ end
227
+ end
228
+
229
+ end
230
+
231
+ end
@@ -0,0 +1,311 @@
1
+ =begin
2
+ #Trinsic API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.13.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module TrinsicApi
17
+ class MatchData
18
+ attr_accessor :national_id_number
19
+
20
+ attr_accessor :full_name
21
+
22
+ attr_accessor :given_name
23
+
24
+ attr_accessor :middle_name
25
+
26
+ attr_accessor :family_name
27
+
28
+ attr_accessor :sex
29
+
30
+ attr_accessor :date_of_birth
31
+
32
+ attr_accessor :face_match
33
+
34
+ attr_accessor :liveness
35
+
36
+ attr_accessor :image_authenticity
37
+
38
+ # Attribute mapping from ruby-style variable name to JSON key.
39
+ def self.attribute_map
40
+ {
41
+ :'national_id_number' => :'nationalIdNumber',
42
+ :'full_name' => :'fullName',
43
+ :'given_name' => :'givenName',
44
+ :'middle_name' => :'middleName',
45
+ :'family_name' => :'familyName',
46
+ :'sex' => :'sex',
47
+ :'date_of_birth' => :'dateOfBirth',
48
+ :'face_match' => :'faceMatch',
49
+ :'liveness' => :'liveness',
50
+ :'image_authenticity' => :'imageAuthenticity'
51
+ }
52
+ end
53
+
54
+ # Returns attribute mapping this model knows about
55
+ def self.acceptable_attribute_map
56
+ attribute_map
57
+ end
58
+
59
+ # Returns all the JSON keys this model knows about
60
+ def self.acceptable_attributes
61
+ acceptable_attribute_map.values
62
+ end
63
+
64
+ # Attribute type mapping.
65
+ def self.openapi_types
66
+ {
67
+ :'national_id_number' => :'Match',
68
+ :'full_name' => :'Match',
69
+ :'given_name' => :'Match',
70
+ :'middle_name' => :'Match',
71
+ :'family_name' => :'Match',
72
+ :'sex' => :'Match',
73
+ :'date_of_birth' => :'Match',
74
+ :'face_match' => :'Match',
75
+ :'liveness' => :'Match',
76
+ :'image_authenticity' => :'Match'
77
+ }
78
+ end
79
+
80
+ # List of attributes with nullable: true
81
+ def self.openapi_nullable
82
+ Set.new([
83
+ :'national_id_number',
84
+ :'full_name',
85
+ :'given_name',
86
+ :'middle_name',
87
+ :'family_name',
88
+ :'sex',
89
+ :'date_of_birth',
90
+ :'face_match',
91
+ :'liveness',
92
+ :'image_authenticity'
93
+ ])
94
+ end
95
+
96
+ # Initializes the object
97
+ # @param [Hash] attributes Model attributes in the form of hash
98
+ def initialize(attributes = {})
99
+ if (!attributes.is_a?(Hash))
100
+ fail ArgumentError, "The input argument (attributes) must be a hash in `TrinsicApi::MatchData` initialize method"
101
+ end
102
+
103
+ # check to see if the attribute exists and convert string to symbol for hash key
104
+ acceptable_attribute_map = self.class.acceptable_attribute_map
105
+ attributes = attributes.each_with_object({}) { |(k, v), h|
106
+ if (!acceptable_attribute_map.key?(k.to_sym))
107
+ fail ArgumentError, "`#{k}` is not a valid attribute in `TrinsicApi::MatchData`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
108
+ end
109
+ h[k.to_sym] = v
110
+ }
111
+
112
+ if attributes.key?(:'national_id_number')
113
+ self.national_id_number = attributes[:'national_id_number']
114
+ end
115
+
116
+ if attributes.key?(:'full_name')
117
+ self.full_name = attributes[:'full_name']
118
+ end
119
+
120
+ if attributes.key?(:'given_name')
121
+ self.given_name = attributes[:'given_name']
122
+ end
123
+
124
+ if attributes.key?(:'middle_name')
125
+ self.middle_name = attributes[:'middle_name']
126
+ end
127
+
128
+ if attributes.key?(:'family_name')
129
+ self.family_name = attributes[:'family_name']
130
+ end
131
+
132
+ if attributes.key?(:'sex')
133
+ self.sex = attributes[:'sex']
134
+ end
135
+
136
+ if attributes.key?(:'date_of_birth')
137
+ self.date_of_birth = attributes[:'date_of_birth']
138
+ end
139
+
140
+ if attributes.key?(:'face_match')
141
+ self.face_match = attributes[:'face_match']
142
+ end
143
+
144
+ if attributes.key?(:'liveness')
145
+ self.liveness = attributes[:'liveness']
146
+ end
147
+
148
+ if attributes.key?(:'image_authenticity')
149
+ self.image_authenticity = attributes[:'image_authenticity']
150
+ end
151
+ end
152
+
153
+ # Show invalid properties with the reasons. Usually used together with valid?
154
+ # @return Array for valid properties with the reasons
155
+ def list_invalid_properties
156
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
157
+ invalid_properties = Array.new
158
+ invalid_properties
159
+ end
160
+
161
+ # Check to see if the all the properties in the model are valid
162
+ # @return true if the model is valid
163
+ def valid?
164
+ warn '[DEPRECATED] the `valid?` method is obsolete'
165
+ true
166
+ end
167
+
168
+ # Checks equality by comparing each attribute.
169
+ # @param [Object] Object to be compared
170
+ def ==(o)
171
+ return true if self.equal?(o)
172
+ self.class == o.class &&
173
+ national_id_number == o.national_id_number &&
174
+ full_name == o.full_name &&
175
+ given_name == o.given_name &&
176
+ middle_name == o.middle_name &&
177
+ family_name == o.family_name &&
178
+ sex == o.sex &&
179
+ date_of_birth == o.date_of_birth &&
180
+ face_match == o.face_match &&
181
+ liveness == o.liveness &&
182
+ image_authenticity == o.image_authenticity
183
+ end
184
+
185
+ # @see the `==` method
186
+ # @param [Object] Object to be compared
187
+ def eql?(o)
188
+ self == o
189
+ end
190
+
191
+ # Calculates hash code according to all attributes.
192
+ # @return [Integer] Hash code
193
+ def hash
194
+ [national_id_number, full_name, given_name, middle_name, family_name, sex, date_of_birth, face_match, liveness, image_authenticity].hash
195
+ end
196
+
197
+ # Builds the object from hash
198
+ # @param [Hash] attributes Model attributes in the form of hash
199
+ # @return [Object] Returns the model itself
200
+ def self.build_from_hash(attributes)
201
+ return nil unless attributes.is_a?(Hash)
202
+ attributes = attributes.transform_keys(&:to_sym)
203
+ transformed_hash = {}
204
+ openapi_types.each_pair do |key, type|
205
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
206
+ transformed_hash["#{key}"] = nil
207
+ elsif type =~ /\AArray<(.*)>/i
208
+ # check to ensure the input is an array given that the attribute
209
+ # is documented as an array but the input is not
210
+ if attributes[attribute_map[key]].is_a?(Array)
211
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
212
+ end
213
+ elsif !attributes[attribute_map[key]].nil?
214
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
215
+ end
216
+ end
217
+ new(transformed_hash)
218
+ end
219
+
220
+ # Deserializes the data based on type
221
+ # @param string type Data type
222
+ # @param string value Value to be deserialized
223
+ # @return [Object] Deserialized data
224
+ def self._deserialize(type, value)
225
+ case type.to_sym
226
+ when :Time
227
+ Time.parse(value)
228
+ when :Date
229
+ Date.parse(value)
230
+ when :String
231
+ value.to_s
232
+ when :Integer
233
+ value.to_i
234
+ when :Float
235
+ value.to_f
236
+ when :Boolean
237
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
238
+ true
239
+ else
240
+ false
241
+ end
242
+ when :Object
243
+ # generic object (usually a Hash), return directly
244
+ value
245
+ when /\AArray<(?<inner_type>.+)>\z/
246
+ inner_type = Regexp.last_match[:inner_type]
247
+ value.map { |v| _deserialize(inner_type, v) }
248
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
249
+ k_type = Regexp.last_match[:k_type]
250
+ v_type = Regexp.last_match[:v_type]
251
+ {}.tap do |hash|
252
+ value.each do |k, v|
253
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
254
+ end
255
+ end
256
+ else # model
257
+ # models (e.g. Pet) or oneOf
258
+ klass = TrinsicApi.const_get(type)
259
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
260
+ end
261
+ end
262
+
263
+ # Returns the string representation of the object
264
+ # @return [String] String presentation of the object
265
+ def to_s
266
+ to_hash.to_s
267
+ end
268
+
269
+ # to_body is an alias to to_hash (backward compatibility)
270
+ # @return [Hash] Returns the object in the form of hash
271
+ def to_body
272
+ to_hash
273
+ end
274
+
275
+ # Returns the object in the form of hash
276
+ # @return [Hash] Returns the object in the form of hash
277
+ def to_hash
278
+ hash = {}
279
+ self.class.attribute_map.each_pair do |attr, param|
280
+ value = self.send(attr)
281
+ if value.nil?
282
+ is_nullable = self.class.openapi_nullable.include?(attr)
283
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
284
+ end
285
+
286
+ hash[param] = _to_hash(value)
287
+ end
288
+ hash
289
+ end
290
+
291
+ # Outputs non-array value in the form of hash
292
+ # For object, use to_hash. Otherwise, just return the value
293
+ # @param [Object] value Any valid value
294
+ # @return [Hash] Returns the value in the form of hash
295
+ def _to_hash(value)
296
+ if value.is_a?(Array)
297
+ value.compact.map { |v| _to_hash(v) }
298
+ elsif value.is_a?(Hash)
299
+ {}.tap do |hash|
300
+ value.each { |k, v| hash[k] = _to_hash(v) }
301
+ end
302
+ elsif value.respond_to? :to_hash
303
+ value.to_hash
304
+ else
305
+ value
306
+ end
307
+ end
308
+
309
+ end
310
+
311
+ end
@@ -18,6 +18,9 @@ module TrinsicApi
18
18
  # Input for the `indonesia-nik-lookup` provider
19
19
  attr_accessor :indonesia_nik
20
20
 
21
+ # Input for the `indonesia-dukcapil-match` provider
22
+ attr_accessor :indonesia_dukcapil_match
23
+
21
24
  # Input for the `mexico-curp-lookup` provider
22
25
  attr_accessor :mexico_curp
23
26
 
@@ -70,6 +73,7 @@ module TrinsicApi
70
73
  def self.attribute_map
71
74
  {
72
75
  :'indonesia_nik' => :'indonesiaNik',
76
+ :'indonesia_dukcapil_match' => :'indonesiaDukcapilMatch',
73
77
  :'mexico_curp' => :'mexicoCurp',
74
78
  :'south_africa_nid' => :'southAfricaNid',
75
79
  :'kenya_nid' => :'kenyaNid',
@@ -103,6 +107,7 @@ module TrinsicApi
103
107
  def self.openapi_types
104
108
  {
105
109
  :'indonesia_nik' => :'IndonesiaNikInput',
110
+ :'indonesia_dukcapil_match' => :'IndonesiaDukcapilMatchInput',
106
111
  :'mexico_curp' => :'MexicoCurpInput',
107
112
  :'south_africa_nid' => :'SouthAfricaNidInput',
108
113
  :'kenya_nid' => :'KenyaNidInput',
@@ -126,6 +131,7 @@ module TrinsicApi
126
131
  def self.openapi_nullable
127
132
  Set.new([
128
133
  :'indonesia_nik',
134
+ :'indonesia_dukcapil_match',
129
135
  :'mexico_curp',
130
136
  :'south_africa_nid',
131
137
  :'kenya_nid',
@@ -165,6 +171,10 @@ module TrinsicApi
165
171
  self.indonesia_nik = attributes[:'indonesia_nik']
166
172
  end
167
173
 
174
+ if attributes.key?(:'indonesia_dukcapil_match')
175
+ self.indonesia_dukcapil_match = attributes[:'indonesia_dukcapil_match']
176
+ end
177
+
168
178
  if attributes.key?(:'mexico_curp')
169
179
  self.mexico_curp = attributes[:'mexico_curp']
170
180
  end
@@ -251,6 +261,7 @@ module TrinsicApi
251
261
  return true if self.equal?(o)
252
262
  self.class == o.class &&
253
263
  indonesia_nik == o.indonesia_nik &&
264
+ indonesia_dukcapil_match == o.indonesia_dukcapil_match &&
254
265
  mexico_curp == o.mexico_curp &&
255
266
  south_africa_nid == o.south_africa_nid &&
256
267
  kenya_nid == o.kenya_nid &&
@@ -278,7 +289,7 @@ module TrinsicApi
278
289
  # Calculates hash code according to all attributes.
279
290
  # @return [Integer] Hash code
280
291
  def hash
281
- [indonesia_nik, mexico_curp, south_africa_nid, kenya_nid, nigeria_nin, aadhaar, bangladesh_national_id, brazil_cpf_check, brazil_digital_cnh, philippine_match, philippine_qr, smart_id, mobile_id, idin, spid, trinsic_test_database_lookup, trinsic_test_sub_providers].hash
292
+ [indonesia_nik, indonesia_dukcapil_match, mexico_curp, south_africa_nid, kenya_nid, nigeria_nin, aadhaar, bangladesh_national_id, brazil_cpf_check, brazil_digital_cnh, philippine_match, philippine_qr, smart_id, mobile_id, idin, spid, trinsic_test_database_lookup, trinsic_test_sub_providers].hash
282
293
  end
283
294
 
284
295
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.13.0
11
11
  =end
12
12
 
13
13
  module TrinsicApi
14
- VERSION = '2.1.0'
14
+ VERSION = '2.1.1-alpha2'
15
15
  end
data/lib/trinsic_api.rb CHANGED
@@ -43,6 +43,7 @@ require 'trinsic_api/models/get_session_result_response'
43
43
  require 'trinsic_api/models/http_validation_problem_details'
44
44
  require 'trinsic_api/models/identity_data'
45
45
  require 'trinsic_api/models/idin_input'
46
+ require 'trinsic_api/models/indonesia_dukcapil_match_input'
46
47
  require 'trinsic_api/models/indonesia_nik_input'
47
48
  require 'trinsic_api/models/integration_capability'
48
49
  require 'trinsic_api/models/integration_launch_method'
@@ -52,6 +53,8 @@ require 'trinsic_api/models/language'
52
53
  require 'trinsic_api/models/list_provider_contracts_response'
53
54
  require 'trinsic_api/models/list_providers_response'
54
55
  require 'trinsic_api/models/list_sessions_response'
56
+ require 'trinsic_api/models/match'
57
+ require 'trinsic_api/models/match_data'
55
58
  require 'trinsic_api/models/mexico_curp_input'
56
59
  require 'trinsic_api/models/mobile_id_input'
57
60
  require 'trinsic_api/models/nigeria_nin_input'
@@ -51,6 +51,12 @@ describe TrinsicApi::IdentityData do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "match"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "attachment_access_keys"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/