swagger_aem 0.9.1
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 +7 -0
- data/LICENSE +201 -0
- data/README.md +118 -0
- data/docs/ConsoleApi.md +111 -0
- data/docs/CqApi.md +61 -0
- data/docs/CrxApi.md +249 -0
- data/docs/SlingApi.md +813 -0
- data/git_push.sh +67 -0
- data/lib/swagger_aem.rb +54 -0
- data/lib/swagger_aem/api/console_api.rb +151 -0
- data/lib/swagger_aem/api/cq_api.rb +96 -0
- data/lib/swagger_aem/api/crx_api.rb +318 -0
- data/lib/swagger_aem/api/sling_api.rb +982 -0
- data/lib/swagger_aem/api_client.rb +387 -0
- data/lib/swagger_aem/api_error.rb +47 -0
- data/lib/swagger_aem/configuration.rb +214 -0
- data/lib/swagger_aem/version.rb +26 -0
- data/spec/api/console_api_spec.rb +71 -0
- data/spec/api/cq_api_spec.rb +59 -0
- data/spec/api/crx_api_spec.rb +108 -0
- data/spec/api/sling_api_spec.rb +264 -0
- data/spec/api_client_spec.rb +237 -0
- data/spec/configuration_spec.rb +53 -0
- data/spec/spec_helper.rb +122 -0
- data/swagger_aem.gemspec +56 -0
- metadata +257 -0
@@ -0,0 +1,26 @@
|
|
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: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
module SwaggerAemClient
|
25
|
+
VERSION = "0.9.1"
|
26
|
+
end
|
@@ -0,0 +1,71 @@
|
|
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: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
|
27
|
+
# Unit tests for SwaggerAemClient::ConsoleApi
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
29
|
+
# Please update as you see appropriate
|
30
|
+
describe 'ConsoleApi' do
|
31
|
+
before do
|
32
|
+
# run before each test
|
33
|
+
@instance = SwaggerAemClient::ConsoleApi.new
|
34
|
+
end
|
35
|
+
|
36
|
+
after do
|
37
|
+
# run after each test
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test an instance of ConsoleApi' do
|
41
|
+
it 'should create an instact of ConsoleApi' do
|
42
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::ConsoleApi)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for post_bundle
|
47
|
+
#
|
48
|
+
#
|
49
|
+
# @param name
|
50
|
+
# @param action
|
51
|
+
# @param [Hash] opts the optional parameters
|
52
|
+
# @return [nil]
|
53
|
+
describe 'post_bundle test' 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
|
+
# unit tests for post_jmx_repository
|
60
|
+
#
|
61
|
+
#
|
62
|
+
# @param action
|
63
|
+
# @param [Hash] opts the optional parameters
|
64
|
+
# @return [nil]
|
65
|
+
describe 'post_jmx_repository test' do
|
66
|
+
it "should work" do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,59 @@
|
|
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: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
|
27
|
+
# Unit tests for SwaggerAemClient::CqApi
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
29
|
+
# Please update as you see appropriate
|
30
|
+
describe 'CqApi' do
|
31
|
+
before do
|
32
|
+
# run before each test
|
33
|
+
@instance = SwaggerAemClient::CqApi.new
|
34
|
+
end
|
35
|
+
|
36
|
+
after do
|
37
|
+
# run after each test
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test an instance of CqApi' do
|
41
|
+
it 'should create an instact of CqApi' do
|
42
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::CqApi)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for post_cq_actions
|
47
|
+
#
|
48
|
+
#
|
49
|
+
# @param authorizable_id
|
50
|
+
# @param changelog
|
51
|
+
# @param [Hash] opts the optional parameters
|
52
|
+
# @return [nil]
|
53
|
+
describe 'post_cq_actions test' 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
|
+
end
|
@@ -0,0 +1,108 @@
|
|
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: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
|
27
|
+
# Unit tests for SwaggerAemClient::CrxApi
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
29
|
+
# Please update as you see appropriate
|
30
|
+
describe 'CrxApi' do
|
31
|
+
before do
|
32
|
+
# run before each test
|
33
|
+
@instance = SwaggerAemClient::CrxApi.new
|
34
|
+
end
|
35
|
+
|
36
|
+
after do
|
37
|
+
# run after each test
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test an instance of CrxApi' do
|
41
|
+
it 'should create an instact of CrxApi' do
|
42
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::CrxApi)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for post_package_service
|
47
|
+
#
|
48
|
+
#
|
49
|
+
# @param cmd
|
50
|
+
# @param [Hash] opts the optional parameters
|
51
|
+
# @return [String]
|
52
|
+
describe 'post_package_service test' do
|
53
|
+
it "should work" do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# unit tests for post_package_service_json
|
59
|
+
#
|
60
|
+
#
|
61
|
+
# @param path
|
62
|
+
# @param cmd
|
63
|
+
# @param [Hash] opts the optional parameters
|
64
|
+
# @option opts [String] :group_name
|
65
|
+
# @option opts [String] :package_name
|
66
|
+
# @option opts [String] :package_version
|
67
|
+
# @option opts [String] :_charset_
|
68
|
+
# @option opts [BOOLEAN] :force
|
69
|
+
# @option opts [File] :package
|
70
|
+
# @return [String]
|
71
|
+
describe 'post_package_service_json test' do
|
72
|
+
it "should work" do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# unit tests for post_package_update
|
78
|
+
#
|
79
|
+
#
|
80
|
+
# @param group_name
|
81
|
+
# @param package_name
|
82
|
+
# @param version
|
83
|
+
# @param path
|
84
|
+
# @param [Hash] opts the optional parameters
|
85
|
+
# @option opts [String] :filter
|
86
|
+
# @option opts [String] :_charset_
|
87
|
+
# @return [String]
|
88
|
+
describe 'post_package_update test' do
|
89
|
+
it "should work" do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# unit tests for post_set_password
|
95
|
+
#
|
96
|
+
#
|
97
|
+
# @param old
|
98
|
+
# @param plain
|
99
|
+
# @param verify
|
100
|
+
# @param [Hash] opts the optional parameters
|
101
|
+
# @return [nil]
|
102
|
+
describe 'post_set_password test' do
|
103
|
+
it "should work" do
|
104
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
@@ -0,0 +1,264 @@
|
|
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: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
|
27
|
+
# Unit tests for SwaggerAemClient::SlingApi
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
29
|
+
# Please update as you see appropriate
|
30
|
+
describe 'SlingApi' do
|
31
|
+
before do
|
32
|
+
# run before each test
|
33
|
+
@instance = SwaggerAemClient::SlingApi.new
|
34
|
+
end
|
35
|
+
|
36
|
+
after do
|
37
|
+
# run after each test
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test an instance of SlingApi' do
|
41
|
+
it 'should create an instact of SlingApi' do
|
42
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::SlingApi)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for delete_agent
|
47
|
+
#
|
48
|
+
#
|
49
|
+
# @param runmode
|
50
|
+
# @param name
|
51
|
+
# @param [Hash] opts the optional parameters
|
52
|
+
# @return [nil]
|
53
|
+
describe 'delete_agent test' 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
|
+
# unit tests for delete_node
|
60
|
+
#
|
61
|
+
#
|
62
|
+
# @param path
|
63
|
+
# @param name
|
64
|
+
# @param [Hash] opts the optional parameters
|
65
|
+
# @return [nil]
|
66
|
+
describe 'delete_node test' do
|
67
|
+
it "should work" do
|
68
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# unit tests for get_agent
|
73
|
+
#
|
74
|
+
#
|
75
|
+
# @param runmode
|
76
|
+
# @param name
|
77
|
+
# @param [Hash] opts the optional parameters
|
78
|
+
# @return [nil]
|
79
|
+
describe 'get_agent test' do
|
80
|
+
it "should work" do
|
81
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
# unit tests for get_node
|
86
|
+
#
|
87
|
+
#
|
88
|
+
# @param path
|
89
|
+
# @param name
|
90
|
+
# @param [Hash] opts the optional parameters
|
91
|
+
# @return [nil]
|
92
|
+
describe 'get_node test' do
|
93
|
+
it "should work" do
|
94
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
# unit tests for get_package
|
99
|
+
#
|
100
|
+
#
|
101
|
+
# @param group
|
102
|
+
# @param name
|
103
|
+
# @param version
|
104
|
+
# @param [Hash] opts the optional parameters
|
105
|
+
# @return [File]
|
106
|
+
describe 'get_package 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
|
+
|
112
|
+
# unit tests for get_package_filter
|
113
|
+
#
|
114
|
+
#
|
115
|
+
# @param group
|
116
|
+
# @param name
|
117
|
+
# @param version
|
118
|
+
# @param [Hash] opts the optional parameters
|
119
|
+
# @return [String]
|
120
|
+
describe 'get_package_filter test' do
|
121
|
+
it "should work" do
|
122
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# unit tests for post_agent
|
127
|
+
#
|
128
|
+
#
|
129
|
+
# @param runmode
|
130
|
+
# @param name
|
131
|
+
# @param [Hash] opts the optional parameters
|
132
|
+
# @option opts [String] :jcrprimary_type
|
133
|
+
# @option opts [String] :jcrcontentcqname
|
134
|
+
# @option opts [String] :jcrcontentjcrtitle
|
135
|
+
# @option opts [String] :jcrcontentjcrdescription
|
136
|
+
# @option opts [String] :jcrcontentslingresource_type
|
137
|
+
# @option opts [String] :jcrcontenttransport_uri
|
138
|
+
# @option opts [String] :jcrcontentlog_level
|
139
|
+
# @option opts [BOOLEAN] :jcrcontentno_versioning
|
140
|
+
# @option opts [Array<String>] :jcrcontentprotocol_http_headers
|
141
|
+
# @option opts [String] :jcrcontentprotocol_http_headers_type_hint
|
142
|
+
# @option opts [String] :jcrcontentprotocol_http_method
|
143
|
+
# @option opts [String] :jcrcontentretry_delay
|
144
|
+
# @option opts [String] :jcrcontentserialization_type
|
145
|
+
# @option opts [String] :jcrcontentjcrmixin_types
|
146
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_receive
|
147
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_specific
|
148
|
+
# @option opts [String] :jcrcontentcqtemplate
|
149
|
+
# @option opts [BOOLEAN] :jcrcontentenabled
|
150
|
+
# @return [nil]
|
151
|
+
describe 'post_agent test' do
|
152
|
+
it "should work" do
|
153
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
# unit tests for post_authorizables
|
158
|
+
#
|
159
|
+
#
|
160
|
+
# @param authorizable_id
|
161
|
+
# @param intermediate_path
|
162
|
+
# @param [Hash] opts the optional parameters
|
163
|
+
# @option opts [String] :create_user
|
164
|
+
# @option opts [String] :create_group
|
165
|
+
# @option opts [String] :reppassword
|
166
|
+
# @option opts [String] :profilegiven_name
|
167
|
+
# @return [String]
|
168
|
+
describe 'post_authorizables test' do
|
169
|
+
it "should work" do
|
170
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
# unit tests for post_config
|
175
|
+
#
|
176
|
+
#
|
177
|
+
# @param runmode
|
178
|
+
# @param name
|
179
|
+
# @param [Hash] opts the optional parameters
|
180
|
+
# @option opts [BOOLEAN] :org_apache_felix_https_nio
|
181
|
+
# @option opts [String] :org_apache_felix_https_nio_type_hint
|
182
|
+
# @option opts [String] :org_apache_felix_https_keystore
|
183
|
+
# @option opts [String] :org_apache_felix_https_keystore_type_hint
|
184
|
+
# @option opts [String] :org_apache_felix_https_keystore_password
|
185
|
+
# @option opts [String] :org_apache_felix_https_keystore_password_type_hint
|
186
|
+
# @option opts [String] :org_apache_felix_https_keystore_key
|
187
|
+
# @option opts [String] :org_apache_felix_https_keystore_key_type_hint
|
188
|
+
# @option opts [String] :org_apache_felix_https_keystore_key_password
|
189
|
+
# @option opts [String] :org_apache_felix_https_keystore_key_password_type_hint
|
190
|
+
# @option opts [String] :org_apache_felix_https_truststore
|
191
|
+
# @option opts [String] :org_apache_felix_https_truststore_type_hint
|
192
|
+
# @option opts [String] :org_apache_felix_https_truststore_password
|
193
|
+
# @option opts [String] :org_apache_felix_https_truststore_password_type_hint
|
194
|
+
# @option opts [String] :org_apache_felix_https_clientcertificate
|
195
|
+
# @option opts [String] :org_apache_felix_https_clientcertificate_type_hint
|
196
|
+
# @option opts [String] :org_apache_felix_https_enable
|
197
|
+
# @option opts [String] :org_apache_felix_https_enable_type_hint
|
198
|
+
# @option opts [String] :org_osgi_service_http_port_secure
|
199
|
+
# @option opts [String] :org_osgi_service_http_port_secure_type_hint
|
200
|
+
# @return [nil]
|
201
|
+
describe 'post_config test' do
|
202
|
+
it "should work" do
|
203
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
# unit tests for post_node_rw
|
208
|
+
#
|
209
|
+
#
|
210
|
+
# @param path
|
211
|
+
# @param name
|
212
|
+
# @param [Hash] opts the optional parameters
|
213
|
+
# @option opts [String] :add_members
|
214
|
+
# @return [nil]
|
215
|
+
describe 'post_node_rw test' do
|
216
|
+
it "should work" do
|
217
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
218
|
+
end
|
219
|
+
end
|
220
|
+
|
221
|
+
# unit tests for post_path
|
222
|
+
#
|
223
|
+
#
|
224
|
+
# @param path
|
225
|
+
# @param jcrprimary_type
|
226
|
+
# @param name
|
227
|
+
# @param [Hash] opts the optional parameters
|
228
|
+
# @return [nil]
|
229
|
+
describe 'post_path test' do
|
230
|
+
it "should work" do
|
231
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
# unit tests for post_query
|
236
|
+
#
|
237
|
+
#
|
238
|
+
# @param path
|
239
|
+
# @param p_limit
|
240
|
+
# @param _1_property
|
241
|
+
# @param _1_property_value
|
242
|
+
# @param [Hash] opts the optional parameters
|
243
|
+
# @return [String]
|
244
|
+
describe 'post_query test' do
|
245
|
+
it "should work" do
|
246
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
# unit tests for post_tree_activation
|
251
|
+
#
|
252
|
+
#
|
253
|
+
# @param ignoredeactivated
|
254
|
+
# @param onlymodified
|
255
|
+
# @param path
|
256
|
+
# @param [Hash] opts the optional parameters
|
257
|
+
# @return [nil]
|
258
|
+
describe 'post_tree_activation test' do
|
259
|
+
it "should work" do
|
260
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
261
|
+
end
|
262
|
+
end
|
263
|
+
|
264
|
+
end
|