swagger_aem 2.1.0 → 2.2.0

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.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +17 -17
  3. data/README.md +25 -5
  4. data/docs/ConsoleApi.md +110 -0
  5. data/docs/CustomApi.md +4 -10
  6. data/docs/KeystoreChainItems.md +12 -0
  7. data/docs/KeystoreInfo.md +9 -0
  8. data/docs/KeystoreItems.md +12 -0
  9. data/docs/SamlConfigurationInfo.md +13 -0
  10. data/docs/SamlConfigurationProperties.md +31 -0
  11. data/docs/SamlConfigurationPropertyItemsArray.md +13 -0
  12. data/docs/SamlConfigurationPropertyItemsBoolean.md +13 -0
  13. data/docs/SamlConfigurationPropertyItemsLong.md +13 -0
  14. data/docs/SamlConfigurationPropertyItemsString.md +13 -0
  15. data/docs/SlingApi.md +550 -21
  16. data/docs/TruststoreInfo.md +9 -0
  17. data/docs/TruststoreItems.md +14 -0
  18. data/lib/swagger_aem.rb +12 -1
  19. data/lib/swagger_aem/api/console_api.rb +138 -1
  20. data/lib/swagger_aem/api/cq_api.rb +1 -1
  21. data/lib/swagger_aem/api/crx_api.rb +1 -1
  22. data/lib/swagger_aem/api/custom_api.rb +9 -21
  23. data/lib/swagger_aem/api/sling_api.rb +641 -41
  24. data/lib/swagger_aem/api_client.rb +1 -1
  25. data/lib/swagger_aem/api_error.rb +1 -1
  26. data/lib/swagger_aem/configuration.rb +1 -1
  27. data/lib/swagger_aem/models/install_status.rb +1 -1
  28. data/lib/swagger_aem/models/install_status_status.rb +1 -1
  29. data/lib/swagger_aem/models/keystore_chain_items.rb +229 -0
  30. data/lib/swagger_aem/models/keystore_info.rb +200 -0
  31. data/lib/swagger_aem/models/keystore_items.rb +230 -0
  32. data/lib/swagger_aem/models/saml_configuration_info.rb +238 -0
  33. data/lib/swagger_aem/models/saml_configuration_properties.rb +467 -0
  34. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +241 -0
  35. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +239 -0
  36. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +239 -0
  37. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +239 -0
  38. data/lib/swagger_aem/models/truststore_info.rb +200 -0
  39. data/lib/swagger_aem/models/truststore_items.rb +248 -0
  40. data/lib/swagger_aem/version.rb +2 -2
  41. data/spec/api/console_api_spec.rb +42 -1
  42. data/spec/api/cq_api_spec.rb +1 -1
  43. data/spec/api/crx_api_spec.rb +1 -1
  44. data/spec/api/custom_api_spec.rb +1 -3
  45. data/spec/api/sling_api_spec.rb +164 -5
  46. data/spec/api_client_spec.rb +1 -1
  47. data/spec/configuration_spec.rb +1 -1
  48. data/spec/models/install_status_spec.rb +1 -1
  49. data/spec/models/install_status_status_spec.rb +1 -1
  50. data/spec/models/keystore_chain_items_spec.rb +66 -0
  51. data/spec/models/keystore_info_spec.rb +48 -0
  52. data/spec/models/keystore_items_spec.rb +66 -0
  53. data/spec/models/saml_configuration_info_spec.rb +72 -0
  54. data/spec/models/saml_configuration_properties_spec.rb +180 -0
  55. data/spec/models/saml_configuration_property_items_array_spec.rb +72 -0
  56. data/spec/models/saml_configuration_property_items_boolean_spec.rb +72 -0
  57. data/spec/models/saml_configuration_property_items_long_spec.rb +72 -0
  58. data/spec/models/saml_configuration_property_items_string_spec.rb +72 -0
  59. data/spec/models/truststore_info_spec.rb +48 -0
  60. data/spec/models/truststore_items_spec.rb +78 -0
  61. data/spec/spec_helper.rb +1 -1
  62. data/swagger_aem.gemspec +2 -2
  63. metadata +47 -3
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -57,4 +57,45 @@ describe 'ConsoleApi' do
57
57
  end
58
58
  end
59
59
 
60
+ # unit tests for post_saml_configuration
61
+ #
62
+ #
63
+ # @param [Hash] opts the optional parameters
64
+ # @option opts [BOOLEAN] :post
65
+ # @option opts [BOOLEAN] :apply
66
+ # @option opts [BOOLEAN] :delete
67
+ # @option opts [String] :action
68
+ # @option opts [String] :location
69
+ # @option opts [Array<String>] :path
70
+ # @option opts [Integer] :service_ranking
71
+ # @option opts [String] :idp_url
72
+ # @option opts [String] :idp_cert_alias
73
+ # @option opts [BOOLEAN] :idp_http_redirect
74
+ # @option opts [String] :service_provider_entity_id
75
+ # @option opts [String] :assertion_consumer_service_url
76
+ # @option opts [String] :sp_private_key_alias
77
+ # @option opts [String] :key_store_password
78
+ # @option opts [String] :default_redirect_url
79
+ # @option opts [String] :user_id_attribute
80
+ # @option opts [BOOLEAN] :use_encryption
81
+ # @option opts [BOOLEAN] :create_user
82
+ # @option opts [BOOLEAN] :add_group_memberships
83
+ # @option opts [String] :group_membership_attribute
84
+ # @option opts [Array<String>] :default_groups
85
+ # @option opts [String] :name_id_format
86
+ # @option opts [Array<String>] :synchronize_attributes
87
+ # @option opts [BOOLEAN] :handle_logout
88
+ # @option opts [String] :logout_url
89
+ # @option opts [Integer] :clock_tolerance
90
+ # @option opts [String] :digest_method
91
+ # @option opts [String] :signature_method
92
+ # @option opts [String] :user_intermediate_path
93
+ # @option opts [Array<String>] :propertylist
94
+ # @return [SamlConfigurationInfo]
95
+ describe 'post_saml_configuration test' do
96
+ it "should work" do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
60
101
  end
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -48,7 +48,6 @@ describe 'CustomApi' do
48
48
  # unit tests for post_config_aem_health_check_servlet
49
49
  #
50
50
  #
51
- # @param runmode
52
51
  # @param [Hash] opts the optional parameters
53
52
  # @option opts [Array<String>] :bundles_ignored
54
53
  # @option opts [String] :bundles_ignored_type_hint
@@ -62,7 +61,6 @@ describe 'CustomApi' do
62
61
  # unit tests for post_config_aem_password_reset
63
62
  #
64
63
  #
65
- # @param runmode
66
64
  # @param [Hash] opts the optional parameters
67
65
  # @option opts [Array<String>] :pwdreset_authorizables
68
66
  # @option opts [String] :pwdreset_authorizables_type_hint
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -83,6 +83,32 @@ describe 'SlingApi' do
83
83
  end
84
84
  end
85
85
 
86
+ # unit tests for get_authorizable_keystore
87
+ #
88
+ #
89
+ # @param intermediate_path
90
+ # @param authorizable_id
91
+ # @param [Hash] opts the optional parameters
92
+ # @return [KeystoreInfo]
93
+ describe 'get_authorizable_keystore test' do
94
+ it "should work" do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
99
+ # unit tests for get_keystore
100
+ #
101
+ #
102
+ # @param intermediate_path
103
+ # @param authorizable_id
104
+ # @param [Hash] opts the optional parameters
105
+ # @return [File]
106
+ describe 'get_keystore test' do
107
+ it "should work" do
108
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
+ end
110
+ end
111
+
86
112
  # unit tests for get_node
87
113
  #
88
114
  #
@@ -139,6 +165,28 @@ describe 'SlingApi' do
139
165
  end
140
166
  end
141
167
 
168
+ # unit tests for get_truststore
169
+ #
170
+ #
171
+ # @param [Hash] opts the optional parameters
172
+ # @return [File]
173
+ describe 'get_truststore test' do
174
+ it "should work" do
175
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
176
+ end
177
+ end
178
+
179
+ # unit tests for get_truststore_info
180
+ #
181
+ #
182
+ # @param [Hash] opts the optional parameters
183
+ # @return [TruststoreInfo]
184
+ describe 'get_truststore_info test' do
185
+ it "should work" do
186
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
187
+ end
188
+ end
189
+
142
190
  # unit tests for post_agent
143
191
  #
144
192
  #
@@ -202,6 +250,31 @@ describe 'SlingApi' do
202
250
  end
203
251
  end
204
252
 
253
+ # unit tests for post_authorizable_keystore
254
+ #
255
+ #
256
+ # @param intermediate_path
257
+ # @param authorizable_id
258
+ # @param [Hash] opts the optional parameters
259
+ # @option opts [String] :operation
260
+ # @option opts [String] :current_password
261
+ # @option opts [String] :new_password
262
+ # @option opts [String] :re_password
263
+ # @option opts [String] :key_password
264
+ # @option opts [String] :key_store_pass
265
+ # @option opts [String] :_alias
266
+ # @option opts [String] :new_alias
267
+ # @option opts [String] :remove_alias
268
+ # @option opts [File] :cert_chain
269
+ # @option opts [File] :pk
270
+ # @option opts [File] :key_store
271
+ # @return [KeystoreInfo]
272
+ describe 'post_authorizable_keystore test' do
273
+ it "should work" do
274
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
275
+ end
276
+ end
277
+
205
278
  # unit tests for post_authorizables
206
279
  #
207
280
  #
@@ -219,10 +292,68 @@ describe 'SlingApi' do
219
292
  end
220
293
  end
221
294
 
295
+ # unit tests for post_config_adobe_granite_saml_authentication_handler
296
+ #
297
+ #
298
+ # @param [Hash] opts the optional parameters
299
+ # @option opts [String] :key_store_password
300
+ # @option opts [String] :key_store_password_type_hint
301
+ # @option opts [Integer] :service_ranking
302
+ # @option opts [String] :service_ranking_type_hint
303
+ # @option opts [BOOLEAN] :idp_http_redirect
304
+ # @option opts [String] :idp_http_redirect_type_hint
305
+ # @option opts [BOOLEAN] :create_user
306
+ # @option opts [String] :create_user_type_hint
307
+ # @option opts [String] :default_redirect_url
308
+ # @option opts [String] :default_redirect_url_type_hint
309
+ # @option opts [String] :user_id_attribute
310
+ # @option opts [String] :user_id_attribute_type_hint
311
+ # @option opts [Array<String>] :default_groups
312
+ # @option opts [String] :default_groups_type_hint
313
+ # @option opts [String] :idp_cert_alias
314
+ # @option opts [String] :idp_cert_alias_type_hint
315
+ # @option opts [BOOLEAN] :add_group_memberships
316
+ # @option opts [String] :add_group_memberships_type_hint
317
+ # @option opts [Array<String>] :path
318
+ # @option opts [String] :path_type_hint
319
+ # @option opts [Array<String>] :synchronize_attributes
320
+ # @option opts [String] :synchronize_attributes_type_hint
321
+ # @option opts [Integer] :clock_tolerance
322
+ # @option opts [String] :clock_tolerance_type_hint
323
+ # @option opts [String] :group_membership_attribute
324
+ # @option opts [String] :group_membership_attribute_type_hint
325
+ # @option opts [String] :idp_url
326
+ # @option opts [String] :idp_url_type_hint
327
+ # @option opts [String] :logout_url
328
+ # @option opts [String] :logout_url_type_hint
329
+ # @option opts [String] :service_provider_entity_id
330
+ # @option opts [String] :service_provider_entity_id_type_hint
331
+ # @option opts [String] :assertion_consumer_service_url
332
+ # @option opts [String] :assertion_consumer_service_url_type_hint
333
+ # @option opts [BOOLEAN] :handle_logout
334
+ # @option opts [String] :handle_logout_type_hint
335
+ # @option opts [String] :sp_private_key_alias
336
+ # @option opts [String] :sp_private_key_alias_type_hint
337
+ # @option opts [BOOLEAN] :use_encryption
338
+ # @option opts [String] :use_encryption_type_hint
339
+ # @option opts [String] :name_id_format
340
+ # @option opts [String] :name_id_format_type_hint
341
+ # @option opts [String] :digest_method
342
+ # @option opts [String] :digest_method_type_hint
343
+ # @option opts [String] :signature_method
344
+ # @option opts [String] :signature_method_type_hint
345
+ # @option opts [String] :user_intermediate_path
346
+ # @option opts [String] :user_intermediate_path_type_hint
347
+ # @return [nil]
348
+ describe 'post_config_adobe_granite_saml_authentication_handler test' do
349
+ it "should work" do
350
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
351
+ end
352
+ end
353
+
222
354
  # unit tests for post_config_apache_felix_jetty_based_http_service
223
355
  #
224
356
  #
225
- # @param runmode
226
357
  # @param [Hash] opts the optional parameters
227
358
  # @option opts [BOOLEAN] :org_apache_felix_https_nio
228
359
  # @option opts [String] :org_apache_felix_https_nio_type_hint
@@ -254,7 +385,6 @@ describe 'SlingApi' do
254
385
  # unit tests for post_config_apache_sling_dav_ex_servlet
255
386
  #
256
387
  #
257
- # @param runmode
258
388
  # @param [Hash] opts the optional parameters
259
389
  # @option opts [String] :_alias
260
390
  # @option opts [String] :alias_type_hint
@@ -270,7 +400,6 @@ describe 'SlingApi' do
270
400
  # unit tests for post_config_apache_sling_get_servlet
271
401
  #
272
402
  #
273
- # @param runmode
274
403
  # @param [Hash] opts the optional parameters
275
404
  # @option opts [String] :json_maximumresults
276
405
  # @option opts [String] :json_maximumresults_type_hint
@@ -290,7 +419,6 @@ describe 'SlingApi' do
290
419
  # unit tests for post_config_apache_sling_referrer_filter
291
420
  #
292
421
  #
293
- # @param runmode
294
422
  # @param [Hash] opts the optional parameters
295
423
  # @option opts [BOOLEAN] :allow_empty
296
424
  # @option opts [String] :allow_empty_type_hint
@@ -298,6 +426,8 @@ describe 'SlingApi' do
298
426
  # @option opts [String] :allow_hosts_type_hint
299
427
  # @option opts [String] :allow_hosts_regexp
300
428
  # @option opts [String] :allow_hosts_regexp_type_hint
429
+ # @option opts [String] :filter_methods
430
+ # @option opts [String] :filter_methods_type_hint
301
431
  # @return [nil]
302
432
  describe 'post_config_apache_sling_referrer_filter test' do
303
433
  it "should work" do
@@ -378,4 +508,33 @@ describe 'SlingApi' do
378
508
  end
379
509
  end
380
510
 
511
+ # unit tests for post_truststore
512
+ #
513
+ #
514
+ # @param [Hash] opts the optional parameters
515
+ # @option opts [String] :operation
516
+ # @option opts [String] :new_password
517
+ # @option opts [String] :re_password
518
+ # @option opts [String] :key_store_type
519
+ # @option opts [String] :remove_alias
520
+ # @option opts [File] :certificate
521
+ # @return [String]
522
+ describe 'post_truststore test' do
523
+ it "should work" do
524
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
525
+ end
526
+ end
527
+
528
+ # unit tests for post_truststore_pkcs12
529
+ #
530
+ #
531
+ # @param [Hash] opts the optional parameters
532
+ # @option opts [File] :truststore_p12
533
+ # @return [String]
534
+ describe 'post_truststore_pkcs12 test' do
535
+ it "should work" do
536
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
537
+ end
538
+ end
539
+
381
540
  end
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.0.0
6
+ OpenAPI spec version: 2.1.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
@@ -0,0 +1,66 @@
1
+ =begin
2
+ #Adobe Experience Manager (AEM) API
3
+
4
+ #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
+
6
+ OpenAPI spec version: 2.1.0
7
+ Contact: opensource@shinesolutions.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for SwaggerAemClient::KeystoreChainItems
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'KeystoreChainItems' do
21
+ before do
22
+ # run before each test
23
+ @instance = SwaggerAemClient::KeystoreChainItems.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of KeystoreChainItems' do
31
+ it 'should create an instance of KeystoreChainItems' do
32
+ expect(@instance).to be_instance_of(SwaggerAemClient::KeystoreChainItems)
33
+ end
34
+ end
35
+ describe 'test attribute "subject"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "issuer"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "not_before"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "not_after"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "serial_number"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ end
66
+
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #Adobe Experience Manager (AEM) API
3
+
4
+ #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
+
6
+ OpenAPI spec version: 2.1.0
7
+ Contact: opensource@shinesolutions.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for SwaggerAemClient::KeystoreInfo
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'KeystoreInfo' do
21
+ before do
22
+ # run before each test
23
+ @instance = SwaggerAemClient::KeystoreInfo.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of KeystoreInfo' do
31
+ it 'should create an instance of KeystoreInfo' do
32
+ expect(@instance).to be_instance_of(SwaggerAemClient::KeystoreInfo)
33
+ end
34
+ end
35
+ describe 'test attribute "aliases"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "exists"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
48
+