budgea_client 3.0.1 → 4.0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/budgea_openapi.json +6 -4
- data/docs/Connector.md +1 -0
- data/lib/budgea_client/models/connector.rb +15 -4
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-3.0.1.gem +0 -0
- data/spec/api/administration_api_spec.rb +225 -23
- data/spec/api/authentication_api_spec.rb +81 -11
- data/spec/api/banks_api_spec.rb +379 -236
- data/spec/api/connections_api_spec.rb +76 -39
- data/spec/api/documents_api_spec.rb +124 -114
- data/spec/api/ocr_api_spec.rb +13 -3
- data/spec/api/oidc_api_spec.rb +14 -4
- data/spec/api/pfm_api_spec.rb +61 -51
- data/spec/api/providers_api_spec.rb +260 -238
- data/spec/api/recipients_api_spec.rb +23 -9
- data/spec/api/terms_api_spec.rb +17 -8
- data/spec/api/transfers_api_spec.rb +88 -57
- data/spec/api/users_management_api_spec.rb +25 -15
- data/spec/api/wealth_api_spec.rb +150 -24
- data/spec/api_client_spec.rb +45 -35
- data/spec/configuration_spec.rb +19 -9
- data/spec/models/access_spec.rb +16 -7
- data/spec/models/account_log_spec.rb +21 -12
- data/spec/models/account_spec.rb +59 -20
- data/spec/models/account_type_spec.rb +19 -10
- data/spec/models/alert_spec.rb +19 -10
- data/spec/models/category_spec.rb +21 -12
- data/spec/models/client_spec.rb +25 -28
- data/spec/models/connection_log_spec.rb +38 -17
- data/spec/models/connection_spec.rb +33 -12
- data/spec/models/connector_logo_spec.rb +16 -7
- data/spec/models/connector_spec.rb +18 -0
- data/spec/models/currency_spec.rb +38 -5
- data/spec/models/device_spec.rb +18 -9
- data/spec/models/document_spec.rb +37 -34
- data/spec/models/document_type_spec.rb +14 -5
- data/spec/models/field_spec.rb +32 -11
- data/spec/models/field_value_spec.rb +13 -4
- data/spec/models/file_spec.rb +15 -6
- data/spec/models/group_spec.rb +19 -10
- data/spec/models/hash_table_spec.rb +15 -6
- data/spec/models/inline_response_200_10_spec.rb +19 -4
- data/spec/models/inline_response_200_11_spec.rb +19 -4
- data/spec/models/inline_response_200_12_spec.rb +19 -4
- data/spec/models/inline_response_200_13_spec.rb +19 -4
- data/spec/models/inline_response_200_14_spec.rb +19 -4
- data/spec/models/inline_response_200_15_spec.rb +19 -4
- data/spec/models/inline_response_200_16_spec.rb +19 -4
- data/spec/models/inline_response_200_17_spec.rb +19 -4
- data/spec/models/inline_response_200_18_spec.rb +19 -4
- data/spec/models/inline_response_200_19_spec.rb +13 -4
- data/spec/models/inline_response_200_1_spec.rb +13 -4
- data/spec/models/inline_response_200_20_spec.rb +19 -4
- data/spec/models/inline_response_200_21_spec.rb +19 -4
- data/spec/models/inline_response_200_22_spec.rb +19 -4
- data/spec/models/inline_response_200_23_spec.rb +19 -4
- data/spec/models/inline_response_200_24_spec.rb +19 -4
- data/spec/models/inline_response_200_25_spec.rb +19 -4
- data/spec/models/inline_response_200_26_spec.rb +19 -4
- data/spec/models/inline_response_200_27_spec.rb +19 -4
- data/spec/models/inline_response_200_28_spec.rb +19 -4
- data/spec/models/inline_response_200_29_spec.rb +19 -4
- data/spec/models/inline_response_200_2_spec.rb +14 -5
- data/spec/models/inline_response_200_30_spec.rb +19 -4
- data/spec/models/inline_response_200_31_spec.rb +19 -4
- data/spec/models/inline_response_200_32_spec.rb +19 -4
- data/spec/models/inline_response_200_33_spec.rb +19 -4
- data/spec/models/inline_response_200_34_spec.rb +7 -1
- data/spec/models/inline_response_200_35_spec.rb +7 -1
- data/spec/models/inline_response_200_36_spec.rb +7 -1
- data/spec/models/inline_response_200_37_spec.rb +7 -1
- data/spec/models/inline_response_200_38_spec.rb +7 -1
- data/spec/models/inline_response_200_3_spec.rb +15 -12
- data/spec/models/inline_response_200_4_spec.rb +14 -17
- data/spec/models/inline_response_200_5_spec.rb +33 -6
- data/spec/models/inline_response_200_6_spec.rb +15 -12
- data/spec/models/inline_response_200_7_spec.rb +25 -4
- data/spec/models/inline_response_200_8_spec.rb +19 -4
- data/spec/models/inline_response_200_9_spec.rb +19 -4
- data/spec/models/inline_response_200_spec.rb +18 -3
- data/spec/models/investment_spec.rb +36 -27
- data/spec/models/investment_value_spec.rb +17 -8
- data/spec/models/invite_spec.rb +17 -8
- data/spec/models/locked_user_spec.rb +14 -5
- data/spec/models/oidc_whitelist_spec.rb +13 -4
- data/spec/models/pocket_spec.rb +21 -12
- data/spec/models/profile_spec.rb +23 -14
- data/spec/models/project_spec.rb +20 -11
- data/spec/models/project_type_spec.rb +14 -5
- data/spec/models/recipient_log_spec.rb +6 -0
- data/spec/models/recipient_spec.rb +44 -17
- data/spec/models/security_spec.rb +16 -7
- data/spec/models/subscription_spec.rb +28 -13
- data/spec/models/terms_of_service_spec.rb +16 -7
- data/spec/models/transaction_information_spec.rb +15 -6
- data/spec/models/transaction_spec.rb +71 -32
- data/spec/models/transactions_cluster_spec.rb +20 -11
- data/spec/models/transfer_log_spec.rb +6 -0
- data/spec/models/transfer_spec.rb +33 -18
- data/spec/models/user_alert_spec.rb +25 -16
- data/spec/models/user_spec.rb +18 -9
- data/spec/models/webhook_spec.rb +31 -10
- data/spec/spec_helper.rb +62 -2
- metadata +3 -14
- data/docs/Bank.md +0 -20
- data/docs/BankCategory.md +0 -9
- data/docs/ConnectionContact.md +0 -17
- data/lib/budgea_client/models/bank.rb +0 -335
- data/lib/budgea_client/models/bank_category.rb +0 -206
- data/lib/budgea_client/models/connection_contact.rb +0 -274
- data/spec/models/bank_category_spec.rb +0 -38
- data/spec/models/bank_spec.rb +0 -92
- data/spec/models/connection_contact_spec.rb +0 -86
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -27,24 +37,25 @@ describe 'ConnectionsApi' do
|
|
|
27
37
|
#
|
|
28
38
|
# @param [Hash] opts the optional parameters
|
|
29
39
|
# @option opts [String] :expand
|
|
30
|
-
# @return [
|
|
40
|
+
# @return [InlineResponse2008]
|
|
31
41
|
describe 'banks_get test' do
|
|
32
|
-
it
|
|
42
|
+
it 'should work' do
|
|
33
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
44
|
end
|
|
35
45
|
end
|
|
36
46
|
|
|
37
|
-
# unit tests for
|
|
47
|
+
# unit tests for banks_id_connector_connections_get
|
|
38
48
|
# Get a subset of id_connection with the largest diversity of account
|
|
39
49
|
# By default, it selects a set of 3 connections.<br><br>
|
|
40
|
-
# @param
|
|
50
|
+
# @param id_connector
|
|
41
51
|
# @param [Hash] opts the optional parameters
|
|
42
52
|
# @option opts [Integer] :range the length of the connection subset
|
|
43
53
|
# @option opts [Integer] :type to target a specific account type which will be
|
|
54
|
+
# @option opts [Integer] :occurrences require at least N accounts of the targeted
|
|
44
55
|
# @option opts [String] :expand
|
|
45
|
-
# @return [
|
|
46
|
-
describe '
|
|
47
|
-
it
|
|
56
|
+
# @return [InlineResponse2009]
|
|
57
|
+
describe 'banks_id_connector_connections_get test' do
|
|
58
|
+
it 'should work' do
|
|
48
59
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
60
|
end
|
|
50
61
|
end
|
|
@@ -54,9 +65,9 @@ describe 'ConnectionsApi' do
|
|
|
54
65
|
#
|
|
55
66
|
# @param [Hash] opts the optional parameters
|
|
56
67
|
# @option opts [String] :expand
|
|
57
|
-
# @return [
|
|
68
|
+
# @return [InlineResponse2009]
|
|
58
69
|
describe 'connections_get test' do
|
|
59
|
-
it
|
|
70
|
+
it 'should work' do
|
|
60
71
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
72
|
end
|
|
62
73
|
end
|
|
@@ -66,9 +77,9 @@ describe 'ConnectionsApi' do
|
|
|
66
77
|
#
|
|
67
78
|
# @param [Hash] opts the optional parameters
|
|
68
79
|
# @option opts [String] :expand
|
|
69
|
-
# @return [
|
|
80
|
+
# @return [InlineResponse20014]
|
|
70
81
|
describe 'connectors_get test' do
|
|
71
|
-
it
|
|
82
|
+
it 'should work' do
|
|
72
83
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
73
84
|
end
|
|
74
85
|
end
|
|
@@ -80,16 +91,15 @@ describe 'ConnectionsApi' do
|
|
|
80
91
|
# @param login Users login
|
|
81
92
|
# @param password Users password
|
|
82
93
|
# @param [Hash] opts the optional parameters
|
|
83
|
-
# @option opts [String] :api Name of the API
|
|
84
94
|
# @option opts [String] :url Url of the bank
|
|
85
95
|
# @option opts [String] :email Email of the user
|
|
86
96
|
# @option opts [String] :types Type of connector, eg. banks or providers
|
|
87
97
|
# @option opts [String] :comment Optionnal comment
|
|
88
98
|
# @option opts [BOOLEAN] :sendmail if set, send an email to user
|
|
89
99
|
# @option opts [String] :expand
|
|
90
|
-
# @return [
|
|
100
|
+
# @return [Connector]
|
|
91
101
|
describe 'connectors_post test' do
|
|
92
|
-
it
|
|
102
|
+
it 'should work' do
|
|
93
103
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
94
104
|
end
|
|
95
105
|
end
|
|
@@ -106,12 +116,12 @@ describe 'ConnectionsApi' do
|
|
|
106
116
|
# @option opts [String] :period period to group logs
|
|
107
117
|
# @option opts [Integer] :id_user ID of a user
|
|
108
118
|
# @option opts [Integer] :id_connection ID of a connection
|
|
109
|
-
# @option opts [Integer] :
|
|
110
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
119
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
120
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
111
121
|
# @option opts [String] :expand
|
|
112
|
-
# @return [
|
|
122
|
+
# @return [InlineResponse20017]
|
|
113
123
|
describe 'logs_get test' do
|
|
114
|
-
it
|
|
124
|
+
it 'should work' do
|
|
115
125
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
126
|
end
|
|
117
127
|
end
|
|
@@ -121,9 +131,23 @@ describe 'ConnectionsApi' do
|
|
|
121
131
|
#
|
|
122
132
|
# @param [Hash] opts the optional parameters
|
|
123
133
|
# @option opts [String] :expand
|
|
124
|
-
# @return [
|
|
134
|
+
# @return [InlineResponse20018]
|
|
125
135
|
describe 'providers_get test' do
|
|
126
|
-
it
|
|
136
|
+
it 'should work' do
|
|
137
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# unit tests for providers_id_connector_connections_get
|
|
142
|
+
# Get a random subset of provider's id_connection
|
|
143
|
+
# By default, it selects a set of 3 connections.<br><br>
|
|
144
|
+
# @param id_connector
|
|
145
|
+
# @param [Hash] opts the optional parameters
|
|
146
|
+
# @option opts [Integer] :range the length of the connection subset
|
|
147
|
+
# @option opts [String] :expand
|
|
148
|
+
# @return [InlineResponse2009]
|
|
149
|
+
describe 'providers_id_connector_connections_get test' do
|
|
150
|
+
it 'should work' do
|
|
127
151
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
128
152
|
end
|
|
129
153
|
end
|
|
@@ -136,7 +160,7 @@ describe 'ConnectionsApi' do
|
|
|
136
160
|
# @option opts [String] :expand
|
|
137
161
|
# @return [Connection]
|
|
138
162
|
describe 'users_id_user_connections_delete test' do
|
|
139
|
-
it
|
|
163
|
+
it 'should work' do
|
|
140
164
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
141
165
|
end
|
|
142
166
|
end
|
|
@@ -147,9 +171,9 @@ describe 'ConnectionsApi' do
|
|
|
147
171
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
148
172
|
# @param [Hash] opts the optional parameters
|
|
149
173
|
# @option opts [String] :expand
|
|
150
|
-
# @return [
|
|
174
|
+
# @return [InlineResponse2009]
|
|
151
175
|
describe 'users_id_user_connections_get test' do
|
|
152
|
-
it
|
|
176
|
+
it 'should work' do
|
|
153
177
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
154
178
|
end
|
|
155
179
|
end
|
|
@@ -163,7 +187,7 @@ describe 'ConnectionsApi' do
|
|
|
163
187
|
# @option opts [String] :expand
|
|
164
188
|
# @return [Connection]
|
|
165
189
|
describe 'users_id_user_connections_id_connection_delete test' do
|
|
166
|
-
it
|
|
190
|
+
it 'should work' do
|
|
167
191
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
168
192
|
end
|
|
169
193
|
end
|
|
@@ -175,9 +199,9 @@ describe 'ConnectionsApi' do
|
|
|
175
199
|
# @param id_connection
|
|
176
200
|
# @param [Hash] opts the optional parameters
|
|
177
201
|
# @option opts [String] :expand
|
|
178
|
-
# @return [
|
|
202
|
+
# @return [InlineResponse2009]
|
|
179
203
|
describe 'users_id_user_connections_id_connection_informations_get test' do
|
|
180
|
-
it
|
|
204
|
+
it 'should work' do
|
|
181
205
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
206
|
end
|
|
183
207
|
end
|
|
@@ -196,12 +220,12 @@ describe 'ConnectionsApi' do
|
|
|
196
220
|
# @option opts [String] :period period to group logs
|
|
197
221
|
# @option opts [Integer] :id_user2 ID of a user
|
|
198
222
|
# @option opts [Integer] :id_connection2 ID of a connection
|
|
199
|
-
# @option opts [Integer] :
|
|
200
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
223
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
224
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
201
225
|
# @option opts [String] :expand
|
|
202
|
-
# @return [
|
|
226
|
+
# @return [InlineResponse20017]
|
|
203
227
|
describe 'users_id_user_connections_id_connection_logs_get test' do
|
|
204
|
-
it
|
|
228
|
+
it 'should work' do
|
|
205
229
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
230
|
end
|
|
207
231
|
end
|
|
@@ -216,10 +240,11 @@ describe 'ConnectionsApi' do
|
|
|
216
240
|
# @option opts [DateTime] :expire Set expiration of the connection to this date
|
|
217
241
|
# @option opts [String] :login Set login to this new login
|
|
218
242
|
# @option opts [String] :password Set password to this new password
|
|
243
|
+
# @option opts [BOOLEAN] :decoupled Try to update a connection with the decoupled error
|
|
219
244
|
# @option opts [String] :expand
|
|
220
245
|
# @return [Connection]
|
|
221
246
|
describe 'users_id_user_connections_id_connection_post test' do
|
|
222
|
-
it
|
|
247
|
+
it 'should work' do
|
|
223
248
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
224
249
|
end
|
|
225
250
|
end
|
|
@@ -233,7 +258,7 @@ describe 'ConnectionsApi' do
|
|
|
233
258
|
# @option opts [String] :expand
|
|
234
259
|
# @return [Connection]
|
|
235
260
|
describe 'users_id_user_connections_id_connection_put test' do
|
|
236
|
-
it
|
|
261
|
+
it 'should work' do
|
|
237
262
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
238
263
|
end
|
|
239
264
|
end
|
|
@@ -243,12 +268,24 @@ describe 'ConnectionsApi' do
|
|
|
243
268
|
# Create a new connection to a given bank or provider. You have to give all needed parameters (use /banks/ID/fields or /providers/ID/fields to get them).<br><br>
|
|
244
269
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
245
270
|
# @param [Hash] opts the optional parameters
|
|
246
|
-
# @option opts [Integer] :
|
|
271
|
+
# @option opts [Integer] :id_connector ID of the connector
|
|
272
|
+
# @option opts [String] :connector_uuid optional uuid of the connector (replaces id_connector)
|
|
273
|
+
# @option opts [String] :birthday bank additional login parameter
|
|
274
|
+
# @option opts [String] :password bank additional login parameter
|
|
275
|
+
# @option opts [String] :oauth_token bank additional login parameter
|
|
276
|
+
# @option opts [String] :oauth_token_secret bank additional login parameter
|
|
277
|
+
# @option opts [String] :auth_type bank additional login parameter
|
|
278
|
+
# @option opts [String] :secret bank additional login parameter
|
|
279
|
+
# @option opts [String] :type bank additional login parameter
|
|
280
|
+
# @option opts [String] :birthdate bank additional login parameter
|
|
281
|
+
# @option opts [String] :nuser bank additional login parameter
|
|
282
|
+
# @option opts [String] :website bank additional login parameter
|
|
283
|
+
# @option opts [String] :login bank additional login parameter
|
|
247
284
|
# @option opts [Integer] :id_provider ID of the provider
|
|
248
285
|
# @option opts [String] :expand
|
|
249
286
|
# @return [Connection]
|
|
250
287
|
describe 'users_id_user_connections_post test' do
|
|
251
|
-
it
|
|
288
|
+
it 'should work' do
|
|
252
289
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
253
290
|
end
|
|
254
291
|
end
|
|
@@ -266,12 +303,12 @@ describe 'ConnectionsApi' do
|
|
|
266
303
|
# @option opts [String] :period period to group logs
|
|
267
304
|
# @option opts [Integer] :id_user2 ID of a user
|
|
268
305
|
# @option opts [Integer] :id_connection ID of a connection
|
|
269
|
-
# @option opts [Integer] :
|
|
270
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
306
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
307
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
271
308
|
# @option opts [String] :expand
|
|
272
|
-
# @return [
|
|
309
|
+
# @return [InlineResponse20017]
|
|
273
310
|
describe 'users_id_user_logs_get test' do
|
|
274
|
-
it
|
|
311
|
+
it 'should work' do
|
|
275
312
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
276
313
|
end
|
|
277
314
|
end
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -27,9 +37,9 @@ describe 'DocumentsApi' do
|
|
|
27
37
|
#
|
|
28
38
|
# @param [Hash] opts the optional parameters
|
|
29
39
|
# @option opts [String] :expand
|
|
30
|
-
# @return [
|
|
40
|
+
# @return [InlineResponse20015]
|
|
31
41
|
describe 'documenttypes_get test' do
|
|
32
|
-
it
|
|
42
|
+
it 'should work' do
|
|
33
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
44
|
end
|
|
35
45
|
end
|
|
@@ -44,7 +54,7 @@ describe 'DocumentsApi' do
|
|
|
44
54
|
# @option opts [String] :expand
|
|
45
55
|
# @return [DocumentType]
|
|
46
56
|
describe 'documenttypes_id_documenttype_put test' do
|
|
47
|
-
it
|
|
57
|
+
it 'should work' do
|
|
48
58
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
59
|
end
|
|
50
60
|
end
|
|
@@ -58,7 +68,7 @@ describe 'DocumentsApi' do
|
|
|
58
68
|
# @option opts [String] :name Name of the document
|
|
59
69
|
# @return [nil]
|
|
60
70
|
describe 'ocr_post test' do
|
|
61
|
-
it
|
|
71
|
+
it 'should work' do
|
|
62
72
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
63
73
|
end
|
|
64
74
|
end
|
|
@@ -73,7 +83,7 @@ describe 'DocumentsApi' do
|
|
|
73
83
|
# @option opts [String] :expand
|
|
74
84
|
# @return [Document]
|
|
75
85
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_delete test' do
|
|
76
|
-
it
|
|
86
|
+
it 'should work' do
|
|
77
87
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
78
88
|
end
|
|
79
89
|
end
|
|
@@ -90,14 +100,14 @@ describe 'DocumentsApi' do
|
|
|
90
100
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
91
101
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
92
102
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
93
|
-
# @option opts [Float] :max_amount
|
|
103
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
94
104
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
95
|
-
# @option opts [Float] :max_timestamp
|
|
105
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
96
106
|
# @option opts [Integer] :id_type filter with a document type
|
|
97
107
|
# @option opts [String] :expand
|
|
98
|
-
# @return [
|
|
108
|
+
# @return [InlineResponse20031]
|
|
99
109
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_get test' do
|
|
100
|
-
it
|
|
110
|
+
it 'should work' do
|
|
101
111
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
102
112
|
end
|
|
103
113
|
end
|
|
@@ -113,7 +123,7 @@ describe 'DocumentsApi' do
|
|
|
113
123
|
# @option opts [String] :expand
|
|
114
124
|
# @return [Document]
|
|
115
125
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_delete test' do
|
|
116
|
-
it
|
|
126
|
+
it 'should work' do
|
|
117
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
118
128
|
end
|
|
119
129
|
end
|
|
@@ -140,7 +150,7 @@ describe 'DocumentsApi' do
|
|
|
140
150
|
# @option opts [String] :expand
|
|
141
151
|
# @return [Document]
|
|
142
152
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_put test' do
|
|
143
|
-
it
|
|
153
|
+
it 'should work' do
|
|
144
154
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
145
155
|
end
|
|
146
156
|
end
|
|
@@ -167,7 +177,7 @@ describe 'DocumentsApi' do
|
|
|
167
177
|
# @option opts [String] :expand
|
|
168
178
|
# @return [Document]
|
|
169
179
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_post test' do
|
|
170
|
-
it
|
|
180
|
+
it 'should work' do
|
|
171
181
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
172
182
|
end
|
|
173
183
|
end
|
|
@@ -183,7 +193,7 @@ describe 'DocumentsApi' do
|
|
|
183
193
|
# @option opts [String] :expand
|
|
184
194
|
# @return [Document]
|
|
185
195
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_put test' do
|
|
186
|
-
it
|
|
196
|
+
it 'should work' do
|
|
187
197
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
198
|
end
|
|
189
199
|
end
|
|
@@ -198,7 +208,7 @@ describe 'DocumentsApi' do
|
|
|
198
208
|
# @option opts [String] :expand
|
|
199
209
|
# @return [Document]
|
|
200
210
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
201
|
-
it
|
|
211
|
+
it 'should work' do
|
|
202
212
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
203
213
|
end
|
|
204
214
|
end
|
|
@@ -215,14 +225,14 @@ describe 'DocumentsApi' do
|
|
|
215
225
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
216
226
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
217
227
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
218
|
-
# @option opts [Float] :max_amount
|
|
228
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
219
229
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
220
|
-
# @option opts [Float] :max_timestamp
|
|
230
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
221
231
|
# @option opts [Integer] :id_type filter with a document type
|
|
222
232
|
# @option opts [String] :expand
|
|
223
|
-
# @return [
|
|
233
|
+
# @return [InlineResponse20031]
|
|
224
234
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
225
|
-
it
|
|
235
|
+
it 'should work' do
|
|
226
236
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
227
237
|
end
|
|
228
238
|
end
|
|
@@ -238,7 +248,7 @@ describe 'DocumentsApi' do
|
|
|
238
248
|
# @option opts [String] :expand
|
|
239
249
|
# @return [Document]
|
|
240
250
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
241
|
-
it
|
|
251
|
+
it 'should work' do
|
|
242
252
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
243
253
|
end
|
|
244
254
|
end
|
|
@@ -265,7 +275,7 @@ describe 'DocumentsApi' do
|
|
|
265
275
|
# @option opts [String] :expand
|
|
266
276
|
# @return [Document]
|
|
267
277
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
268
|
-
it
|
|
278
|
+
it 'should work' do
|
|
269
279
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
270
280
|
end
|
|
271
281
|
end
|
|
@@ -292,7 +302,7 @@ describe 'DocumentsApi' do
|
|
|
292
302
|
# @option opts [String] :expand
|
|
293
303
|
# @return [Document]
|
|
294
304
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
295
|
-
it
|
|
305
|
+
it 'should work' do
|
|
296
306
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
297
307
|
end
|
|
298
308
|
end
|
|
@@ -308,7 +318,7 @@ describe 'DocumentsApi' do
|
|
|
308
318
|
# @option opts [String] :expand
|
|
309
319
|
# @return [Document]
|
|
310
320
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
311
|
-
it
|
|
321
|
+
it 'should work' do
|
|
312
322
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
313
323
|
end
|
|
314
324
|
end
|
|
@@ -324,7 +334,7 @@ describe 'DocumentsApi' do
|
|
|
324
334
|
# @option opts [String] :expand
|
|
325
335
|
# @return [Document]
|
|
326
336
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_delete test' do
|
|
327
|
-
it
|
|
337
|
+
it 'should work' do
|
|
328
338
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
329
339
|
end
|
|
330
340
|
end
|
|
@@ -342,14 +352,14 @@ describe 'DocumentsApi' do
|
|
|
342
352
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
343
353
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
344
354
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
345
|
-
# @option opts [Float] :max_amount
|
|
355
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
346
356
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
347
|
-
# @option opts [Float] :max_timestamp
|
|
357
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
348
358
|
# @option opts [Integer] :id_type filter with a document type
|
|
349
359
|
# @option opts [String] :expand
|
|
350
|
-
# @return [
|
|
360
|
+
# @return [InlineResponse20031]
|
|
351
361
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get test' do
|
|
352
|
-
it
|
|
362
|
+
it 'should work' do
|
|
353
363
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
354
364
|
end
|
|
355
365
|
end
|
|
@@ -366,7 +376,7 @@ describe 'DocumentsApi' do
|
|
|
366
376
|
# @option opts [String] :expand
|
|
367
377
|
# @return [Document]
|
|
368
378
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_id_document_delete test' do
|
|
369
|
-
it
|
|
379
|
+
it 'should work' do
|
|
370
380
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
371
381
|
end
|
|
372
382
|
end
|
|
@@ -394,7 +404,7 @@ describe 'DocumentsApi' do
|
|
|
394
404
|
# @option opts [String] :expand
|
|
395
405
|
# @return [Document]
|
|
396
406
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_id_document_put test' do
|
|
397
|
-
it
|
|
407
|
+
it 'should work' do
|
|
398
408
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
399
409
|
end
|
|
400
410
|
end
|
|
@@ -422,7 +432,7 @@ describe 'DocumentsApi' do
|
|
|
422
432
|
# @option opts [String] :expand
|
|
423
433
|
# @return [Document]
|
|
424
434
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_post test' do
|
|
425
|
-
it
|
|
435
|
+
it 'should work' do
|
|
426
436
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
427
437
|
end
|
|
428
438
|
end
|
|
@@ -439,7 +449,7 @@ describe 'DocumentsApi' do
|
|
|
439
449
|
# @option opts [String] :expand
|
|
440
450
|
# @return [Document]
|
|
441
451
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_put test' do
|
|
442
|
-
it
|
|
452
|
+
it 'should work' do
|
|
443
453
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
444
454
|
end
|
|
445
455
|
end
|
|
@@ -455,7 +465,7 @@ describe 'DocumentsApi' do
|
|
|
455
465
|
# @option opts [String] :expand
|
|
456
466
|
# @return [Document]
|
|
457
467
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
458
|
-
it
|
|
468
|
+
it 'should work' do
|
|
459
469
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
460
470
|
end
|
|
461
471
|
end
|
|
@@ -473,14 +483,14 @@ describe 'DocumentsApi' do
|
|
|
473
483
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
474
484
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
475
485
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
476
|
-
# @option opts [Float] :max_amount
|
|
486
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
477
487
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
478
|
-
# @option opts [Float] :max_timestamp
|
|
488
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
479
489
|
# @option opts [Integer] :id_type filter with a document type
|
|
480
490
|
# @option opts [String] :expand
|
|
481
|
-
# @return [
|
|
491
|
+
# @return [InlineResponse20031]
|
|
482
492
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
483
|
-
it
|
|
493
|
+
it 'should work' do
|
|
484
494
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
485
495
|
end
|
|
486
496
|
end
|
|
@@ -497,7 +507,7 @@ describe 'DocumentsApi' do
|
|
|
497
507
|
# @option opts [String] :expand
|
|
498
508
|
# @return [Document]
|
|
499
509
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
500
|
-
it
|
|
510
|
+
it 'should work' do
|
|
501
511
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
502
512
|
end
|
|
503
513
|
end
|
|
@@ -525,7 +535,7 @@ describe 'DocumentsApi' do
|
|
|
525
535
|
# @option opts [String] :expand
|
|
526
536
|
# @return [Document]
|
|
527
537
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
528
|
-
it
|
|
538
|
+
it 'should work' do
|
|
529
539
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
530
540
|
end
|
|
531
541
|
end
|
|
@@ -553,7 +563,7 @@ describe 'DocumentsApi' do
|
|
|
553
563
|
# @option opts [String] :expand
|
|
554
564
|
# @return [Document]
|
|
555
565
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
556
|
-
it
|
|
566
|
+
it 'should work' do
|
|
557
567
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
558
568
|
end
|
|
559
569
|
end
|
|
@@ -570,7 +580,7 @@ describe 'DocumentsApi' do
|
|
|
570
580
|
# @option opts [String] :expand
|
|
571
581
|
# @return [Document]
|
|
572
582
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
573
|
-
it
|
|
583
|
+
it 'should work' do
|
|
574
584
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
575
585
|
end
|
|
576
586
|
end
|
|
@@ -584,7 +594,7 @@ describe 'DocumentsApi' do
|
|
|
584
594
|
# @option opts [String] :expand
|
|
585
595
|
# @return [Document]
|
|
586
596
|
describe 'users_id_user_connections_id_connection_documents_delete test' do
|
|
587
|
-
it
|
|
597
|
+
it 'should work' do
|
|
588
598
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
589
599
|
end
|
|
590
600
|
end
|
|
@@ -600,14 +610,14 @@ describe 'DocumentsApi' do
|
|
|
600
610
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
601
611
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
602
612
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
603
|
-
# @option opts [Float] :max_amount
|
|
613
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
604
614
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
605
|
-
# @option opts [Float] :max_timestamp
|
|
615
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
606
616
|
# @option opts [Integer] :id_type filter with a document type
|
|
607
617
|
# @option opts [String] :expand
|
|
608
|
-
# @return [
|
|
618
|
+
# @return [InlineResponse20031]
|
|
609
619
|
describe 'users_id_user_connections_id_connection_documents_get test' do
|
|
610
|
-
it
|
|
620
|
+
it 'should work' do
|
|
611
621
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
612
622
|
end
|
|
613
623
|
end
|
|
@@ -622,7 +632,7 @@ describe 'DocumentsApi' do
|
|
|
622
632
|
# @option opts [String] :expand
|
|
623
633
|
# @return [Document]
|
|
624
634
|
describe 'users_id_user_connections_id_connection_documents_id_document_delete test' do
|
|
625
|
-
it
|
|
635
|
+
it 'should work' do
|
|
626
636
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
627
637
|
end
|
|
628
638
|
end
|
|
@@ -648,7 +658,7 @@ describe 'DocumentsApi' do
|
|
|
648
658
|
# @option opts [String] :expand
|
|
649
659
|
# @return [Document]
|
|
650
660
|
describe 'users_id_user_connections_id_connection_documents_id_document_put test' do
|
|
651
|
-
it
|
|
661
|
+
it 'should work' do
|
|
652
662
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
653
663
|
end
|
|
654
664
|
end
|
|
@@ -674,7 +684,7 @@ describe 'DocumentsApi' do
|
|
|
674
684
|
# @option opts [String] :expand
|
|
675
685
|
# @return [Document]
|
|
676
686
|
describe 'users_id_user_connections_id_connection_documents_post test' do
|
|
677
|
-
it
|
|
687
|
+
it 'should work' do
|
|
678
688
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
679
689
|
end
|
|
680
690
|
end
|
|
@@ -689,7 +699,7 @@ describe 'DocumentsApi' do
|
|
|
689
699
|
# @option opts [String] :expand
|
|
690
700
|
# @return [Document]
|
|
691
701
|
describe 'users_id_user_connections_id_connection_documents_put test' do
|
|
692
|
-
it
|
|
702
|
+
it 'should work' do
|
|
693
703
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
694
704
|
end
|
|
695
705
|
end
|
|
@@ -704,7 +714,7 @@ describe 'DocumentsApi' do
|
|
|
704
714
|
# @option opts [String] :expand
|
|
705
715
|
# @return [Document]
|
|
706
716
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_delete test' do
|
|
707
|
-
it
|
|
717
|
+
it 'should work' do
|
|
708
718
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
709
719
|
end
|
|
710
720
|
end
|
|
@@ -721,14 +731,14 @@ describe 'DocumentsApi' do
|
|
|
721
731
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
722
732
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
723
733
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
724
|
-
# @option opts [Float] :max_amount
|
|
734
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
725
735
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
726
|
-
# @option opts [Float] :max_timestamp
|
|
736
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
727
737
|
# @option opts [Integer] :id_type filter with a document type
|
|
728
738
|
# @option opts [String] :expand
|
|
729
|
-
# @return [
|
|
739
|
+
# @return [InlineResponse20031]
|
|
730
740
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get test' do
|
|
731
|
-
it
|
|
741
|
+
it 'should work' do
|
|
732
742
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
733
743
|
end
|
|
734
744
|
end
|
|
@@ -744,7 +754,7 @@ describe 'DocumentsApi' do
|
|
|
744
754
|
# @option opts [String] :expand
|
|
745
755
|
# @return [Document]
|
|
746
756
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_id_document_delete test' do
|
|
747
|
-
it
|
|
757
|
+
it 'should work' do
|
|
748
758
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
749
759
|
end
|
|
750
760
|
end
|
|
@@ -771,7 +781,7 @@ describe 'DocumentsApi' do
|
|
|
771
781
|
# @option opts [String] :expand
|
|
772
782
|
# @return [Document]
|
|
773
783
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_id_document_put test' do
|
|
774
|
-
it
|
|
784
|
+
it 'should work' do
|
|
775
785
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
776
786
|
end
|
|
777
787
|
end
|
|
@@ -798,7 +808,7 @@ describe 'DocumentsApi' do
|
|
|
798
808
|
# @option opts [String] :expand
|
|
799
809
|
# @return [Document]
|
|
800
810
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_post test' do
|
|
801
|
-
it
|
|
811
|
+
it 'should work' do
|
|
802
812
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
803
813
|
end
|
|
804
814
|
end
|
|
@@ -814,7 +824,7 @@ describe 'DocumentsApi' do
|
|
|
814
824
|
# @option opts [String] :expand
|
|
815
825
|
# @return [Document]
|
|
816
826
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_put test' do
|
|
817
|
-
it
|
|
827
|
+
it 'should work' do
|
|
818
828
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
819
829
|
end
|
|
820
830
|
end
|
|
@@ -829,7 +839,7 @@ describe 'DocumentsApi' do
|
|
|
829
839
|
# @option opts [String] :expand
|
|
830
840
|
# @return [Document]
|
|
831
841
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_delete test' do
|
|
832
|
-
it
|
|
842
|
+
it 'should work' do
|
|
833
843
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
834
844
|
end
|
|
835
845
|
end
|
|
@@ -846,14 +856,14 @@ describe 'DocumentsApi' do
|
|
|
846
856
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
847
857
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
848
858
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
849
|
-
# @option opts [Float] :max_amount
|
|
859
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
850
860
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
851
|
-
# @option opts [Float] :max_timestamp
|
|
861
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
852
862
|
# @option opts [Integer] :id_type filter with a document type
|
|
853
863
|
# @option opts [String] :expand
|
|
854
|
-
# @return [
|
|
864
|
+
# @return [InlineResponse20031]
|
|
855
865
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_get test' do
|
|
856
|
-
it
|
|
866
|
+
it 'should work' do
|
|
857
867
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
858
868
|
end
|
|
859
869
|
end
|
|
@@ -869,7 +879,7 @@ describe 'DocumentsApi' do
|
|
|
869
879
|
# @option opts [String] :expand
|
|
870
880
|
# @return [Document]
|
|
871
881
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_id_document_delete test' do
|
|
872
|
-
it
|
|
882
|
+
it 'should work' do
|
|
873
883
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
874
884
|
end
|
|
875
885
|
end
|
|
@@ -896,7 +906,7 @@ describe 'DocumentsApi' do
|
|
|
896
906
|
# @option opts [String] :expand
|
|
897
907
|
# @return [Document]
|
|
898
908
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_id_document_put test' do
|
|
899
|
-
it
|
|
909
|
+
it 'should work' do
|
|
900
910
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
901
911
|
end
|
|
902
912
|
end
|
|
@@ -923,7 +933,7 @@ describe 'DocumentsApi' do
|
|
|
923
933
|
# @option opts [String] :expand
|
|
924
934
|
# @return [Document]
|
|
925
935
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_post test' do
|
|
926
|
-
it
|
|
936
|
+
it 'should work' do
|
|
927
937
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
928
938
|
end
|
|
929
939
|
end
|
|
@@ -939,7 +949,7 @@ describe 'DocumentsApi' do
|
|
|
939
949
|
# @option opts [String] :expand
|
|
940
950
|
# @return [Document]
|
|
941
951
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_put test' do
|
|
942
|
-
it
|
|
952
|
+
it 'should work' do
|
|
943
953
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
944
954
|
end
|
|
945
955
|
end
|
|
@@ -954,7 +964,7 @@ describe 'DocumentsApi' do
|
|
|
954
964
|
# @option opts [String] :expand
|
|
955
965
|
# @return [Document]
|
|
956
966
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
957
|
-
it
|
|
967
|
+
it 'should work' do
|
|
958
968
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
959
969
|
end
|
|
960
970
|
end
|
|
@@ -971,14 +981,14 @@ describe 'DocumentsApi' do
|
|
|
971
981
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
972
982
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
973
983
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
974
|
-
# @option opts [Float] :max_amount
|
|
984
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
975
985
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
976
|
-
# @option opts [Float] :max_timestamp
|
|
986
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
977
987
|
# @option opts [Integer] :id_type filter with a document type
|
|
978
988
|
# @option opts [String] :expand
|
|
979
|
-
# @return [
|
|
989
|
+
# @return [InlineResponse20031]
|
|
980
990
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
981
|
-
it
|
|
991
|
+
it 'should work' do
|
|
982
992
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
983
993
|
end
|
|
984
994
|
end
|
|
@@ -994,7 +1004,7 @@ describe 'DocumentsApi' do
|
|
|
994
1004
|
# @option opts [String] :expand
|
|
995
1005
|
# @return [Document]
|
|
996
1006
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
997
|
-
it
|
|
1007
|
+
it 'should work' do
|
|
998
1008
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
999
1009
|
end
|
|
1000
1010
|
end
|
|
@@ -1021,7 +1031,7 @@ describe 'DocumentsApi' do
|
|
|
1021
1031
|
# @option opts [String] :expand
|
|
1022
1032
|
# @return [Document]
|
|
1023
1033
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
1024
|
-
it
|
|
1034
|
+
it 'should work' do
|
|
1025
1035
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1026
1036
|
end
|
|
1027
1037
|
end
|
|
@@ -1048,7 +1058,7 @@ describe 'DocumentsApi' do
|
|
|
1048
1058
|
# @option opts [String] :expand
|
|
1049
1059
|
# @return [Document]
|
|
1050
1060
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
1051
|
-
it
|
|
1061
|
+
it 'should work' do
|
|
1052
1062
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1053
1063
|
end
|
|
1054
1064
|
end
|
|
@@ -1064,7 +1074,7 @@ describe 'DocumentsApi' do
|
|
|
1064
1074
|
# @option opts [String] :expand
|
|
1065
1075
|
# @return [Document]
|
|
1066
1076
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
1067
|
-
it
|
|
1077
|
+
it 'should work' do
|
|
1068
1078
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1069
1079
|
end
|
|
1070
1080
|
end
|
|
@@ -1077,7 +1087,7 @@ describe 'DocumentsApi' do
|
|
|
1077
1087
|
# @option opts [String] :expand
|
|
1078
1088
|
# @return [Document]
|
|
1079
1089
|
describe 'users_id_user_documents_delete test' do
|
|
1080
|
-
it
|
|
1090
|
+
it 'should work' do
|
|
1081
1091
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1082
1092
|
end
|
|
1083
1093
|
end
|
|
@@ -1092,14 +1102,14 @@ describe 'DocumentsApi' do
|
|
|
1092
1102
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1093
1103
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1094
1104
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1095
|
-
# @option opts [Float] :max_amount
|
|
1105
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1096
1106
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1097
|
-
# @option opts [Float] :max_timestamp
|
|
1107
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1098
1108
|
# @option opts [Integer] :id_type filter with a document type
|
|
1099
1109
|
# @option opts [String] :expand
|
|
1100
|
-
# @return [
|
|
1110
|
+
# @return [InlineResponse20031]
|
|
1101
1111
|
describe 'users_id_user_documents_get test' do
|
|
1102
|
-
it
|
|
1112
|
+
it 'should work' do
|
|
1103
1113
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1104
1114
|
end
|
|
1105
1115
|
end
|
|
@@ -1113,7 +1123,7 @@ describe 'DocumentsApi' do
|
|
|
1113
1123
|
# @option opts [String] :expand
|
|
1114
1124
|
# @return [Document]
|
|
1115
1125
|
describe 'users_id_user_documents_id_document_delete test' do
|
|
1116
|
-
it
|
|
1126
|
+
it 'should work' do
|
|
1117
1127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1118
1128
|
end
|
|
1119
1129
|
end
|
|
@@ -1138,7 +1148,7 @@ describe 'DocumentsApi' do
|
|
|
1138
1148
|
# @option opts [String] :expand
|
|
1139
1149
|
# @return [Document]
|
|
1140
1150
|
describe 'users_id_user_documents_id_document_put test' do
|
|
1141
|
-
it
|
|
1151
|
+
it 'should work' do
|
|
1142
1152
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1143
1153
|
end
|
|
1144
1154
|
end
|
|
@@ -1163,7 +1173,7 @@ describe 'DocumentsApi' do
|
|
|
1163
1173
|
# @option opts [String] :expand
|
|
1164
1174
|
# @return [Document]
|
|
1165
1175
|
describe 'users_id_user_documents_post test' do
|
|
1166
|
-
it
|
|
1176
|
+
it 'should work' do
|
|
1167
1177
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1168
1178
|
end
|
|
1169
1179
|
end
|
|
@@ -1177,7 +1187,7 @@ describe 'DocumentsApi' do
|
|
|
1177
1187
|
# @option opts [String] :expand
|
|
1178
1188
|
# @return [Document]
|
|
1179
1189
|
describe 'users_id_user_documents_put test' do
|
|
1180
|
-
it
|
|
1190
|
+
it 'should work' do
|
|
1181
1191
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1182
1192
|
end
|
|
1183
1193
|
end
|
|
@@ -1192,7 +1202,7 @@ describe 'DocumentsApi' do
|
|
|
1192
1202
|
# @option opts [String] :name Name of the document
|
|
1193
1203
|
# @return [nil]
|
|
1194
1204
|
describe 'users_id_user_ocr_post test' do
|
|
1195
|
-
it
|
|
1205
|
+
it 'should work' do
|
|
1196
1206
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1197
1207
|
end
|
|
1198
1208
|
end
|
|
@@ -1206,7 +1216,7 @@ describe 'DocumentsApi' do
|
|
|
1206
1216
|
# @option opts [String] :expand
|
|
1207
1217
|
# @return [Document]
|
|
1208
1218
|
describe 'users_id_user_subscriptions_id_subscription_documents_delete test' do
|
|
1209
|
-
it
|
|
1219
|
+
it 'should work' do
|
|
1210
1220
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1211
1221
|
end
|
|
1212
1222
|
end
|
|
@@ -1222,14 +1232,14 @@ describe 'DocumentsApi' do
|
|
|
1222
1232
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1223
1233
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1224
1234
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1225
|
-
# @option opts [Float] :max_amount
|
|
1235
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1226
1236
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1227
|
-
# @option opts [Float] :max_timestamp
|
|
1237
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1228
1238
|
# @option opts [Integer] :id_type filter with a document type
|
|
1229
1239
|
# @option opts [String] :expand
|
|
1230
|
-
# @return [
|
|
1240
|
+
# @return [InlineResponse20031]
|
|
1231
1241
|
describe 'users_id_user_subscriptions_id_subscription_documents_get test' do
|
|
1232
|
-
it
|
|
1242
|
+
it 'should work' do
|
|
1233
1243
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1234
1244
|
end
|
|
1235
1245
|
end
|
|
@@ -1244,7 +1254,7 @@ describe 'DocumentsApi' do
|
|
|
1244
1254
|
# @option opts [String] :expand
|
|
1245
1255
|
# @return [Document]
|
|
1246
1256
|
describe 'users_id_user_subscriptions_id_subscription_documents_id_document_delete test' do
|
|
1247
|
-
it
|
|
1257
|
+
it 'should work' do
|
|
1248
1258
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1249
1259
|
end
|
|
1250
1260
|
end
|
|
@@ -1270,7 +1280,7 @@ describe 'DocumentsApi' do
|
|
|
1270
1280
|
# @option opts [String] :expand
|
|
1271
1281
|
# @return [Document]
|
|
1272
1282
|
describe 'users_id_user_subscriptions_id_subscription_documents_id_document_put test' do
|
|
1273
|
-
it
|
|
1283
|
+
it 'should work' do
|
|
1274
1284
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1275
1285
|
end
|
|
1276
1286
|
end
|
|
@@ -1296,7 +1306,7 @@ describe 'DocumentsApi' do
|
|
|
1296
1306
|
# @option opts [String] :expand
|
|
1297
1307
|
# @return [Document]
|
|
1298
1308
|
describe 'users_id_user_subscriptions_id_subscription_documents_post test' do
|
|
1299
|
-
it
|
|
1309
|
+
it 'should work' do
|
|
1300
1310
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1301
1311
|
end
|
|
1302
1312
|
end
|
|
@@ -1311,7 +1321,7 @@ describe 'DocumentsApi' do
|
|
|
1311
1321
|
# @option opts [String] :expand
|
|
1312
1322
|
# @return [Document]
|
|
1313
1323
|
describe 'users_id_user_subscriptions_id_subscription_documents_put test' do
|
|
1314
|
-
it
|
|
1324
|
+
it 'should work' do
|
|
1315
1325
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1316
1326
|
end
|
|
1317
1327
|
end
|
|
@@ -1325,7 +1335,7 @@ describe 'DocumentsApi' do
|
|
|
1325
1335
|
# @option opts [String] :expand
|
|
1326
1336
|
# @return [Document]
|
|
1327
1337
|
describe 'users_id_user_transactions_id_transaction_documents_delete test' do
|
|
1328
|
-
it
|
|
1338
|
+
it 'should work' do
|
|
1329
1339
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1330
1340
|
end
|
|
1331
1341
|
end
|
|
@@ -1341,14 +1351,14 @@ describe 'DocumentsApi' do
|
|
|
1341
1351
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1342
1352
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1343
1353
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1344
|
-
# @option opts [Float] :max_amount
|
|
1354
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1345
1355
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1346
|
-
# @option opts [Float] :max_timestamp
|
|
1356
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1347
1357
|
# @option opts [Integer] :id_type filter with a document type
|
|
1348
1358
|
# @option opts [String] :expand
|
|
1349
|
-
# @return [
|
|
1359
|
+
# @return [InlineResponse20031]
|
|
1350
1360
|
describe 'users_id_user_transactions_id_transaction_documents_get test' do
|
|
1351
|
-
it
|
|
1361
|
+
it 'should work' do
|
|
1352
1362
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1353
1363
|
end
|
|
1354
1364
|
end
|
|
@@ -1363,7 +1373,7 @@ describe 'DocumentsApi' do
|
|
|
1363
1373
|
# @option opts [String] :expand
|
|
1364
1374
|
# @return [Document]
|
|
1365
1375
|
describe 'users_id_user_transactions_id_transaction_documents_id_document_delete test' do
|
|
1366
|
-
it
|
|
1376
|
+
it 'should work' do
|
|
1367
1377
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1368
1378
|
end
|
|
1369
1379
|
end
|
|
@@ -1389,7 +1399,7 @@ describe 'DocumentsApi' do
|
|
|
1389
1399
|
# @option opts [String] :expand
|
|
1390
1400
|
# @return [Document]
|
|
1391
1401
|
describe 'users_id_user_transactions_id_transaction_documents_id_document_put test' do
|
|
1392
|
-
it
|
|
1402
|
+
it 'should work' do
|
|
1393
1403
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1394
1404
|
end
|
|
1395
1405
|
end
|
|
@@ -1415,7 +1425,7 @@ describe 'DocumentsApi' do
|
|
|
1415
1425
|
# @option opts [String] :expand
|
|
1416
1426
|
# @return [Document]
|
|
1417
1427
|
describe 'users_id_user_transactions_id_transaction_documents_post test' do
|
|
1418
|
-
it
|
|
1428
|
+
it 'should work' do
|
|
1419
1429
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1420
1430
|
end
|
|
1421
1431
|
end
|
|
@@ -1430,7 +1440,7 @@ describe 'DocumentsApi' do
|
|
|
1430
1440
|
# @option opts [String] :expand
|
|
1431
1441
|
# @return [Document]
|
|
1432
1442
|
describe 'users_id_user_transactions_id_transaction_documents_put test' do
|
|
1433
|
-
it
|
|
1443
|
+
it 'should work' do
|
|
1434
1444
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1435
1445
|
end
|
|
1436
1446
|
end
|
|
@@ -1444,7 +1454,7 @@ describe 'DocumentsApi' do
|
|
|
1444
1454
|
# @option opts [String] :expand
|
|
1445
1455
|
# @return [Document]
|
|
1446
1456
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
1447
|
-
it
|
|
1457
|
+
it 'should work' do
|
|
1448
1458
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1449
1459
|
end
|
|
1450
1460
|
end
|
|
@@ -1460,14 +1470,14 @@ describe 'DocumentsApi' do
|
|
|
1460
1470
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1461
1471
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1462
1472
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1463
|
-
# @option opts [Float] :max_amount
|
|
1473
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1464
1474
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1465
|
-
# @option opts [Float] :max_timestamp
|
|
1475
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1466
1476
|
# @option opts [Integer] :id_type filter with a document type
|
|
1467
1477
|
# @option opts [String] :expand
|
|
1468
|
-
# @return [
|
|
1478
|
+
# @return [InlineResponse20031]
|
|
1469
1479
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
1470
|
-
it
|
|
1480
|
+
it 'should work' do
|
|
1471
1481
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1472
1482
|
end
|
|
1473
1483
|
end
|
|
@@ -1482,7 +1492,7 @@ describe 'DocumentsApi' do
|
|
|
1482
1492
|
# @option opts [String] :expand
|
|
1483
1493
|
# @return [Document]
|
|
1484
1494
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
1485
|
-
it
|
|
1495
|
+
it 'should work' do
|
|
1486
1496
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1487
1497
|
end
|
|
1488
1498
|
end
|
|
@@ -1508,7 +1518,7 @@ describe 'DocumentsApi' do
|
|
|
1508
1518
|
# @option opts [String] :expand
|
|
1509
1519
|
# @return [Document]
|
|
1510
1520
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
1511
|
-
it
|
|
1521
|
+
it 'should work' do
|
|
1512
1522
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1513
1523
|
end
|
|
1514
1524
|
end
|
|
@@ -1534,7 +1544,7 @@ describe 'DocumentsApi' do
|
|
|
1534
1544
|
# @option opts [String] :expand
|
|
1535
1545
|
# @return [Document]
|
|
1536
1546
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
1537
|
-
it
|
|
1547
|
+
it 'should work' do
|
|
1538
1548
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1539
1549
|
end
|
|
1540
1550
|
end
|
|
@@ -1549,7 +1559,7 @@ describe 'DocumentsApi' do
|
|
|
1549
1559
|
# @option opts [String] :expand
|
|
1550
1560
|
# @return [Document]
|
|
1551
1561
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
1552
|
-
it
|
|
1562
|
+
it 'should work' do
|
|
1553
1563
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1554
1564
|
end
|
|
1555
1565
|
end
|