autosde_openapi_client 1.2.9 → 1.2.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 575aa4aa366bd6e9fad041b3ed97260ab47d50f01f60a0842f6622f7530fbcc2
4
- data.tar.gz: 4acbf78c9593d846da1935208e29c4c5d373d92c1f8fcb0d8ce315f6a555da36
3
+ metadata.gz: 6e0106ad0705646759cc5ec00be61bd997b28f4718fd84f18ad9e0ab2a765a1e
4
+ data.tar.gz: 2ab47782c3a05ce33c59880908e96e5f5ffb25eff2f27d1798eab9f134b87869
5
5
  SHA512:
6
- metadata.gz: a7cc7b0928dc2df8aef7f1f40126ddc2e8d7210524377dcd5ee0afeda2106b8a65508c4c3a6dc50ae591aa3e64df1f5e7c5f42ea27a0f8da874fd2ca81235c2b
7
- data.tar.gz: 050d5cf70a260741f732eb0f0abe090be28cbe1acf03cf5bd5fe95c898ad4e195ca931c49d105cb6487cdc639272d590c071c36b51eb328280d672c631e304e6
6
+ metadata.gz: 314945a5aafdd64f1f669391805e4160dea86bbcba00acd8734f588a44be11e65e0301b4ab273e2491c64d990a27132b474b13fa9df59ef9e488edc83c5f890b
7
+ data.tar.gz: c0b586c9350754ffc2186f06c7b7753b84429f09004a054e6be42521ffe76e12428662866d9a425af795befa295a093d99f8342e17061f9de6c85cf84afc613a
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **auto_refresh** | **Boolean** | auto_refresh | [optional][default to true] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
+ | **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
9
10
  | **management_ip** | **String** | management_ip | [optional] |
10
11
  | **name** | **String** | name | [optional] |
11
12
  | **status** | **String** | status | [optional] |
@@ -22,6 +23,7 @@ require 'autosde_openapi_client'
22
23
  instance = AutosdeOpenapiClient::StorageSystem.new(
23
24
  auto_refresh: null,
24
25
  component_state: null,
26
+ enabled_capability_values: null,
25
27
  management_ip: null,
26
28
  name: null,
27
29
  status: null,
@@ -8,6 +8,7 @@
8
8
  | **chap_name** | **String** | chap_name | [optional] |
9
9
  | **chap_secret** | **String** | chap_secret | [optional] |
10
10
  | **component_state** | **String** | component_state | [optional] |
11
+ | **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
11
12
  | **initial_refresh** | **Boolean** | initial_refresh | [optional][default to true] |
12
13
  | **iqn** | **String** | | [optional] |
13
14
  | **management_ip** | **String** | management_ip | [optional] |
@@ -33,6 +34,7 @@ instance = AutosdeOpenapiClient::StorageSystemCreate.new(
33
34
  chap_name: null,
34
35
  chap_secret: null,
35
36
  component_state: null,
37
+ enabled_capability_values: null,
36
38
  initial_refresh: null,
37
39
  iqn: null,
38
40
  management_ip: null,
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
7
8
  | **management_ip** | **String** | management_ip | [optional] |
8
9
  | **name** | **String** | name | [optional] |
9
10
  | **password** | **String** | password | [optional] |
@@ -15,6 +16,7 @@
15
16
  require 'autosde_openapi_client'
16
17
 
17
18
  instance = AutosdeOpenapiClient::StorageSystemUpdate.new(
19
+ enabled_capability_values: null,
18
20
  management_ip: null,
19
21
  name: null,
20
22
  password: null,
@@ -22,6 +22,8 @@ module AutosdeOpenapiClient
22
22
  # component_state
23
23
  attr_accessor :component_state
24
24
 
25
+ attr_accessor :enabled_capability_values
26
+
25
27
  # management_ip
26
28
  attr_accessor :management_ip
27
29
 
@@ -69,6 +71,7 @@ module AutosdeOpenapiClient
69
71
  {
70
72
  :'auto_refresh' => :'auto_refresh',
71
73
  :'component_state' => :'component_state',
74
+ :'enabled_capability_values' => :'enabled_capability_values',
72
75
  :'management_ip' => :'management_ip',
73
76
  :'name' => :'name',
74
77
  :'status' => :'status',
@@ -89,6 +92,7 @@ module AutosdeOpenapiClient
89
92
  {
90
93
  :'auto_refresh' => :'Boolean',
91
94
  :'component_state' => :'String',
95
+ :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
92
96
  :'management_ip' => :'String',
93
97
  :'name' => :'String',
94
98
  :'status' => :'String',
@@ -130,6 +134,10 @@ module AutosdeOpenapiClient
130
134
  self.component_state = attributes[:'component_state']
131
135
  end
132
136
 
137
+ if attributes.key?(:'enabled_capability_values')
138
+ self.enabled_capability_values = attributes[:'enabled_capability_values']
139
+ end
140
+
133
141
  if attributes.key?(:'management_ip')
134
142
  self.management_ip = attributes[:'management_ip']
135
143
  end
@@ -208,6 +216,7 @@ module AutosdeOpenapiClient
208
216
  self.class == o.class &&
209
217
  auto_refresh == o.auto_refresh &&
210
218
  component_state == o.component_state &&
219
+ enabled_capability_values == o.enabled_capability_values &&
211
220
  management_ip == o.management_ip &&
212
221
  name == o.name &&
213
222
  status == o.status &&
@@ -226,7 +235,7 @@ module AutosdeOpenapiClient
226
235
  # Calculates hash code according to all attributes.
227
236
  # @return [Integer] Hash code
228
237
  def hash
229
- [auto_refresh, component_state, management_ip, name, status, storage_array, storage_family, system_type, uuid].hash
238
+ [auto_refresh, component_state, enabled_capability_values, management_ip, name, status, storage_array, storage_family, system_type, uuid].hash
230
239
  end
231
240
 
232
241
  # Builds the object from hash
@@ -28,6 +28,8 @@ module AutosdeOpenapiClient
28
28
  # component_state
29
29
  attr_accessor :component_state
30
30
 
31
+ attr_accessor :enabled_capability_values
32
+
31
33
  # initial_refresh
32
34
  attr_accessor :initial_refresh
33
35
 
@@ -97,6 +99,7 @@ module AutosdeOpenapiClient
97
99
  :'chap_name' => :'chap_name',
98
100
  :'chap_secret' => :'chap_secret',
99
101
  :'component_state' => :'component_state',
102
+ :'enabled_capability_values' => :'enabled_capability_values',
100
103
  :'initial_refresh' => :'initial_refresh',
101
104
  :'iqn' => :'iqn',
102
105
  :'management_ip' => :'management_ip',
@@ -126,6 +129,7 @@ module AutosdeOpenapiClient
126
129
  :'chap_name' => :'String',
127
130
  :'chap_secret' => :'String',
128
131
  :'component_state' => :'String',
132
+ :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
129
133
  :'initial_refresh' => :'Boolean',
130
134
  :'iqn' => :'String',
131
135
  :'management_ip' => :'String',
@@ -182,6 +186,10 @@ module AutosdeOpenapiClient
182
186
  self.component_state = attributes[:'component_state']
183
187
  end
184
188
 
189
+ if attributes.key?(:'enabled_capability_values')
190
+ self.enabled_capability_values = attributes[:'enabled_capability_values']
191
+ end
192
+
185
193
  if attributes.key?(:'initial_refresh')
186
194
  self.initial_refresh = attributes[:'initial_refresh']
187
195
  else
@@ -304,6 +312,7 @@ module AutosdeOpenapiClient
304
312
  chap_name == o.chap_name &&
305
313
  chap_secret == o.chap_secret &&
306
314
  component_state == o.component_state &&
315
+ enabled_capability_values == o.enabled_capability_values &&
307
316
  initial_refresh == o.initial_refresh &&
308
317
  iqn == o.iqn &&
309
318
  management_ip == o.management_ip &&
@@ -329,7 +338,7 @@ module AutosdeOpenapiClient
329
338
  # Calculates hash code according to all attributes.
330
339
  # @return [Integer] Hash code
331
340
  def hash
332
- [auto_refresh, chap_name, chap_secret, component_state, initial_refresh, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
341
+ [auto_refresh, chap_name, chap_secret, component_state, enabled_capability_values, initial_refresh, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
333
342
  end
334
343
 
335
344
  # Builds the object from hash
@@ -16,6 +16,8 @@ require 'time'
16
16
  module AutosdeOpenapiClient
17
17
  # TODO add description
18
18
  class StorageSystemUpdate
19
+ attr_accessor :enabled_capability_values
20
+
19
21
  # management_ip
20
22
  attr_accessor :management_ip
21
23
 
@@ -31,6 +33,7 @@ module AutosdeOpenapiClient
31
33
  # Attribute mapping from ruby-style variable name to JSON key.
32
34
  def self.attribute_map
33
35
  {
36
+ :'enabled_capability_values' => :'enabled_capability_values',
34
37
  :'management_ip' => :'management_ip',
35
38
  :'name' => :'name',
36
39
  :'password' => :'password',
@@ -46,6 +49,7 @@ module AutosdeOpenapiClient
46
49
  # Attribute type mapping.
47
50
  def self.openapi_types
48
51
  {
52
+ :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
49
53
  :'management_ip' => :'String',
50
54
  :'name' => :'String',
51
55
  :'password' => :'String',
@@ -74,6 +78,10 @@ module AutosdeOpenapiClient
74
78
  h[k.to_sym] = v
75
79
  }
76
80
 
81
+ if attributes.key?(:'enabled_capability_values')
82
+ self.enabled_capability_values = attributes[:'enabled_capability_values']
83
+ end
84
+
77
85
  if attributes.key?(:'management_ip')
78
86
  self.management_ip = attributes[:'management_ip']
79
87
  end
@@ -124,6 +132,7 @@ module AutosdeOpenapiClient
124
132
  def ==(o)
125
133
  return true if self.equal?(o)
126
134
  self.class == o.class &&
135
+ enabled_capability_values == o.enabled_capability_values &&
127
136
  management_ip == o.management_ip &&
128
137
  name == o.name &&
129
138
  password == o.password &&
@@ -139,7 +148,7 @@ module AutosdeOpenapiClient
139
148
  # Calculates hash code according to all attributes.
140
149
  # @return [Integer] Hash code
141
150
  def hash
142
- [management_ip, name, password, user].hash
151
+ [enabled_capability_values, management_ip, name, password, user].hash
143
152
  end
144
153
 
145
154
  # Builds the object from hash
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Site Manager API
5
5
 
6
- The version of the OpenAPI document: 1.2.9
6
+ The version of the OpenAPI document: 1.2.10
7
7
  Contact: autosde@il.ibm.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.0.0
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.0
11
11
  =end
12
12
 
13
13
  module AutosdeOpenapiClient
14
- VERSION = '1.2.9'
14
+ VERSION = '1.2.10'
15
15
  end
@@ -53,6 +53,12 @@ describe AutosdeOpenapiClient::StorageSystemCreate do
53
53
  end
54
54
  end
55
55
 
56
+ describe 'test attribute "enabled_capability_values"' do
57
+ it 'should work' do
58
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
59
+ end
60
+ end
61
+
56
62
  describe 'test attribute "initial_refresh"' do
57
63
  it 'should work' do
58
64
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::StorageSystem do
41
41
  end
42
42
  end
43
43
 
44
+ describe 'test attribute "enabled_capability_values"' do
45
+ it 'should work' do
46
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
47
+ end
48
+ end
49
+
44
50
  describe 'test attribute "management_ip"' do
45
51
  it 'should work' do
46
52
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,6 +25,12 @@ describe AutosdeOpenapiClient::StorageSystemUpdate do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystemUpdate)
26
26
  end
27
27
  end
28
+ describe 'test attribute "enabled_capability_values"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
28
34
  describe 'test attribute "management_ip"' do
29
35
  it 'should work' do
30
36
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autosde_openapi_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.9
4
+ version: 1.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-11 00:00:00.000000000 Z
11
+ date: 2022-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -389,104 +389,104 @@ signing_key:
389
389
  specification_version: 4
390
390
  summary: Site Manager API Ruby Gem
391
391
  test_files:
392
- - spec/api/volume_safe_delete_api_spec.rb
392
+ - spec/api/user_api_spec.rb
393
+ - spec/api/system_type_api_spec.rb
394
+ - spec/api/service_resource_attachment_api_spec.rb
395
+ - spec/api/native_capability_api_spec.rb
396
+ - spec/api/celery_config_api_spec.rb
397
+ - spec/api/profile_api_spec.rb
393
398
  - spec/api/host_volume_connection_api_spec.rb
399
+ - spec/api/storage_system_api_spec.rb
400
+ - spec/api/service_api_spec.rb
401
+ - spec/api/auto_sde_role_api_spec.rb
394
402
  - spec/api/address_api_spec.rb
403
+ - spec/api/job_api_spec.rb
404
+ - spec/api/volume_api_spec.rb
405
+ - spec/api/host_cluster_membership_api_spec.rb
406
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
407
+ - spec/api/account_api_spec.rb
395
408
  - spec/api/storage_host_api_spec.rb
409
+ - spec/api/host_api_spec.rb
410
+ - spec/api/host_cluster_api_spec.rb
396
411
  - spec/api/event_api_spec.rb
397
- - spec/api/capability_translation_api_spec.rb
398
- - spec/api/auto_sde_project_api_spec.rb
399
- - spec/api/auto_sde_role_api_spec.rb
400
- - spec/api/service_resource_attachment_api_spec.rb
412
+ - spec/api/authentication_api_spec.rb
413
+ - spec/api/provisioning_strategy_api_spec.rb
401
414
  - spec/api/snapshot_api_spec.rb
402
- - spec/api/celery_config_api_spec.rb
403
- - spec/api/abstract_capability_api_spec.rb
404
415
  - spec/api/host_cluster_volume_mapping_api_spec.rb
405
- - spec/api/job_api_spec.rb
406
- - spec/api/native_capability_api_spec.rb
407
- - spec/api/storage_system_api_spec.rb
408
- - spec/api/user_api_spec.rb
409
- - spec/api/host_cluster_api_spec.rb
410
- - spec/api/provisioning_strategy_api_spec.rb
411
- - spec/api/storage_resource_api_spec.rb
412
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
413
- - spec/api/system_type_api_spec.rb
414
- - spec/api/account_api_spec.rb
415
- - spec/api/profile_api_spec.rb
416
- - spec/api/refresh_system_api_spec.rb
417
- - spec/api/host_cluster_membership_api_spec.rb
416
+ - spec/api/auto_sde_project_api_spec.rb
418
417
  - spec/api/validate_system_api_spec.rb
419
- - spec/api/volume_api_spec.rb
420
- - spec/api/authentication_api_spec.rb
418
+ - spec/api/volume_safe_delete_api_spec.rb
419
+ - spec/api/abstract_capability_api_spec.rb
420
+ - spec/api/refresh_system_api_spec.rb
421
421
  - spec/api/storage_hosts_mapping_api_spec.rb
422
- - spec/api/host_api_spec.rb
423
- - spec/api/service_api_spec.rb
422
+ - spec/api/capability_translation_api_spec.rb
423
+ - spec/api/storage_resource_api_spec.rb
424
424
  - spec/api_client_spec.rb
425
425
  - spec/configuration_spec.rb
426
- - spec/models/storage_hosts_mapping_response_spec.rb
427
- - spec/models/job_create_spec.rb
428
- - spec/models/snapshot_spec.rb
429
- - spec/models/celery_config_spec.rb
426
+ - spec/models/storage_host_wwpn_candidates_spec.rb
427
+ - spec/models/host_cluster_spec.rb
428
+ - spec/models/storage_host_update_spec.rb
430
429
  - spec/models/account_post_response_spec.rb
430
+ - spec/models/storage_hosts_mapping_spec.rb
431
+ - spec/models/address_create_spec.rb
432
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
433
+ - spec/models/volume_spec.rb
434
+ - spec/models/event_response_spec.rb
435
+ - spec/models/native_capability_spec.rb
436
+ - spec/models/storage_host_response_spec.rb
437
+ - spec/models/volume_update_spec.rb
438
+ - spec/models/address_spec.rb
439
+ - spec/models/storage_resource_create_spec.rb
440
+ - spec/models/host_cluster_membership_spec.rb
431
441
  - spec/models/storage_host_spec.rb
432
- - spec/models/host_cluster_volume_mapping_create_spec.rb
433
- - spec/models/service_spec.rb
442
+ - spec/models/system_type_create_spec.rb
443
+ - spec/models/service_abstract_capability_value_spec.rb
444
+ - spec/models/storage_system_create_spec.rb
445
+ - spec/models/storage_resource_spec.rb
446
+ - spec/models/user_update_spec.rb
434
447
  - spec/models/async_response_spec.rb
448
+ - spec/models/volume_safe_delete_create_spec.rb
449
+ - spec/models/job_create_spec.rb
450
+ - spec/models/host_create_spec.rb
451
+ - spec/models/host_cluster_volume_mapping_spec.rb
452
+ - spec/models/host_cluster_response_spec.rb
453
+ - spec/models/account_spec.rb
454
+ - spec/models/storage_resource_response_spec.rb
455
+ - spec/models/account_post_request_spec.rb
456
+ - spec/models/host_volume_connection_spec.rb
457
+ - spec/models/host_cluster_create_spec.rb
458
+ - spec/models/validate_system_spec.rb
435
459
  - spec/models/system_type_spec.rb
436
- - spec/models/host_cluster_membership_spec.rb
460
+ - spec/models/refresh_system_spec.rb
461
+ - spec/models/volume_safe_delete_spec.rb
462
+ - spec/models/host_volume_connection_create_spec.rb
463
+ - spec/models/storage_hosts_mapping_response_spec.rb
437
464
  - spec/models/service_create_spec.rb
438
- - spec/models/storage_resource_spec.rb
439
- - spec/models/event_response_spec.rb
440
- - spec/models/address_spec.rb
441
- - spec/models/storage_host_response_spec.rb
442
- - spec/models/authentication_spec.rb
443
- - spec/models/volume_response_spec.rb
444
- - spec/models/storage_resource_update_spec.rb
445
- - spec/models/auto_sde_project_spec.rb
446
- - spec/models/native_capability_spec.rb
447
- - spec/models/host_cluster_volume_mapping_spec.rb
448
- - spec/models/event_spec.rb
465
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
449
466
  - spec/models/storage_hosts_mapping_create_spec.rb
450
- - spec/models/abstract_capability_spec.rb
451
- - spec/models/host_volume_connection_create_spec.rb
452
- - spec/models/job_spec.rb
453
- - spec/models/storage_host_create_spec.rb
454
- - spec/models/host_spec.rb
467
+ - spec/models/celery_config_spec.rb
455
468
  - spec/models/profile_spec.rb
456
- - spec/models/volume_safe_delete_spec.rb
457
- - spec/models/storage_hosts_mapping_spec.rb
469
+ - spec/models/auto_sde_role_spec.rb
470
+ - spec/models/storage_resource_update_spec.rb
471
+ - spec/models/volume_response_spec.rb
458
472
  - spec/models/auth_response_spec.rb
459
- - spec/models/volume_spec.rb
460
- - spec/models/capability_translation_create_spec.rb
461
- - spec/models/host_create_spec.rb
462
- - spec/models/validate_system_spec.rb
463
- - spec/models/storage_host_wwpn_candidates_spec.rb
473
+ - spec/models/event_spec.rb
464
474
  - spec/models/snapshot_create_spec.rb
465
- - spec/models/storage_host_update_spec.rb
466
- - spec/models/storage_resource_create_spec.rb
467
- - spec/models/address_create_spec.rb
468
- - spec/models/storage_system_create_spec.rb
469
- - spec/models/volume_create_spec.rb
475
+ - spec/models/capability_translation_spec.rb
476
+ - spec/models/abstract_capability_spec.rb
477
+ - spec/models/user_spec.rb
478
+ - spec/models/authentication_spec.rb
470
479
  - spec/models/service_resource_attachment_spec.rb
471
- - spec/models/refresh_system_spec.rb
472
- - spec/models/user_create_spec.rb
473
- - spec/models/host_cluster_spec.rb
480
+ - spec/models/capability_translation_create_spec.rb
474
481
  - spec/models/storage_system_spec.rb
475
- - spec/models/auto_sde_role_spec.rb
482
+ - spec/models/storage_host_create_spec.rb
483
+ - spec/models/auto_sde_project_spec.rb
484
+ - spec/models/job_spec.rb
485
+ - spec/models/volume_create_spec.rb
486
+ - spec/models/service_spec.rb
487
+ - spec/models/host_spec.rb
476
488
  - spec/models/storage_system_update_spec.rb
477
- - spec/models/host_cluster_response_spec.rb
478
- - spec/models/host_cluster_create_spec.rb
479
- - spec/models/service_abstract_capability_value_spec.rb
480
- - spec/models/volume_safe_delete_create_spec.rb
481
- - spec/models/host_cluster_volume_mapping_response_spec.rb
482
- - spec/models/storage_resource_response_spec.rb
483
489
  - spec/models/provisioning_strategy_spec.rb
484
- - spec/models/account_post_request_spec.rb
485
- - spec/models/user_update_spec.rb
486
- - spec/models/account_spec.rb
487
- - spec/models/host_volume_connection_spec.rb
488
- - spec/models/user_spec.rb
489
- - spec/models/capability_translation_spec.rb
490
- - spec/models/volume_update_spec.rb
491
- - spec/models/system_type_create_spec.rb
490
+ - spec/models/snapshot_spec.rb
491
+ - spec/models/user_create_spec.rb
492
492
  - spec/spec_helper.rb