freeclimb 5.2.0 → 5.3.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 (42) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -1
  3. data/Gemfile.lock +3 -3
  4. data/README.md +17 -4
  5. data/docs/CallResult.md +2 -2
  6. data/docs/CreateConference.md +4 -2
  7. data/docs/DefaultApi.md +368 -1
  8. data/docs/ExportList.md +32 -0
  9. data/docs/ExportOutputType.md +16 -0
  10. data/docs/ExportRequest.md +24 -0
  11. data/docs/ExportRequestOutput.md +18 -0
  12. data/docs/ExportResourceType.md +17 -0
  13. data/docs/ExportResult.md +40 -0
  14. data/docs/ExportResultOutput.md +18 -0
  15. data/docs/ExportStatus.md +21 -0
  16. data/lib/freeclimb/api/default_api.rb +313 -0
  17. data/lib/freeclimb/models/call_result.rb +8 -8
  18. data/lib/freeclimb/models/create_conference.rb +15 -5
  19. data/lib/freeclimb/models/export_list.rb +304 -0
  20. data/lib/freeclimb/models/export_output_type.rb +34 -0
  21. data/lib/freeclimb/models/export_request.rb +276 -0
  22. data/lib/freeclimb/models/export_request_output.rb +243 -0
  23. data/lib/freeclimb/models/export_resource_type.rb +35 -0
  24. data/lib/freeclimb/models/export_result.rb +405 -0
  25. data/lib/freeclimb/models/export_result_output.rb +243 -0
  26. data/lib/freeclimb/models/export_status.rb +39 -0
  27. data/lib/freeclimb/version.rb +1 -1
  28. data/lib/freeclimb.rb +8 -0
  29. data/openapi.json +370 -2
  30. data/spec/api/default_api_spec.rb +141 -2
  31. data/spec/models/call_result_spec.rb +36 -36
  32. data/spec/models/create_conference_spec.rb +83 -35
  33. data/spec/models/export_list_spec.rb +502 -0
  34. data/spec/models/export_output_type_spec.rb +43 -0
  35. data/spec/models/export_request_output_spec.rb +162 -0
  36. data/spec/models/export_request_spec.rb +320 -0
  37. data/spec/models/export_resource_type_spec.rb +59 -0
  38. data/spec/models/export_result_output_spec.rb +162 -0
  39. data/spec/models/export_result_spec.rb +718 -0
  40. data/spec/models/export_status_spec.rb +123 -0
  41. data/yarn.lock +29 -29
  42. metadata +26 -2
@@ -0,0 +1,502 @@
1
+ # #FreeClimb API
2
+ #
3
+ # FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
4
+ #
5
+ # The version of the OpenAPI document: 1.0.0
6
+ # Contact: support@freeclimb.com
7
+ # Generated by: https://openapi-generator.tech
8
+ # OpenAPI Generator version: 7.9.0
9
+ #
10
+
11
+ require "spec_helper"
12
+ require "json"
13
+ require "date"
14
+ include Freeclimb
15
+
16
+ # Unit tests for Freeclimb::ExportList
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe Freeclimb::ExportList do
20
+ let(:instance) { Freeclimb::ExportList.new }
21
+
22
+ describe "test an instance of ExportList" do
23
+ it "should create an instance of ExportList" do
24
+ expect(instance).to be_instance_of(Freeclimb::ExportList)
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "total"' do
29
+ it "should work" do
30
+ instance.total = 1
31
+ expect(instance.total).to eq(1)
32
+ end
33
+ end
34
+
35
+ describe 'test attribute "start"' do
36
+ it "should work" do
37
+ instance.start = 1
38
+ expect(instance.start).to eq(1)
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "_end"' do
43
+ it "should work" do
44
+ instance._end = 1
45
+ expect(instance._end).to eq(1)
46
+ end
47
+ end
48
+
49
+ describe 'test attribute "page"' do
50
+ it "should work" do
51
+ instance.page = 1
52
+ expect(instance.page).to eq(1)
53
+ end
54
+ end
55
+
56
+ describe 'test attribute "num_pages"' do
57
+ it "should work" do
58
+ instance.num_pages = 1
59
+ expect(instance.num_pages).to eq(1)
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "page_size"' do
64
+ it "should work" do
65
+ instance.page_size = 1
66
+ expect(instance.page_size).to eq(1)
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "next_page_uri"' do
71
+ it "should work" do
72
+ instance.next_page_uri = "TEST_STRING"
73
+ expect(instance.next_page_uri).to eq("TEST_STRING")
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "exports"' do
78
+ it "should work" do
79
+ instance.exports = ["ELEMENT_1", "ELEMENT_2"]
80
+ expect(instance.exports).to eq(["ELEMENT_1", "ELEMENT_2"])
81
+ end
82
+ end
83
+
84
+ describe 'test method "initialize"' do
85
+ it "properly initializes with values" do
86
+ expect {
87
+ Freeclimb::ExportList.new(
88
+ total: 1,
89
+
90
+ start: 1,
91
+
92
+ _end: 1,
93
+
94
+ page: 1,
95
+
96
+ num_pages: 1,
97
+
98
+ page_size: 1,
99
+
100
+ next_page_uri: "TS",
101
+
102
+ exports: []
103
+ )
104
+ }.not_to raise_error
105
+ end
106
+ it "fails to initialize with input argument that is not a hash in Freeclimb::ExportList" do
107
+ expect {
108
+ Freeclimb::ExportList.new(
109
+ total: 1,
110
+
111
+ start: 1,
112
+
113
+ _end: 1,
114
+
115
+ page: 1,
116
+
117
+ num_pages: 1,
118
+
119
+ page_size: 1,
120
+
121
+ next_page_uri: "TS",
122
+
123
+ exports: [],
124
+
125
+ invalid_attribute: true
126
+ )
127
+ }.to raise_error(ArgumentError)
128
+ end
129
+ it "fails to initialize with invalid attribute" do
130
+ expect {
131
+ Freeclimb::ExportList.new(
132
+ total: 1,
133
+
134
+ start: 1,
135
+
136
+ _end: 1,
137
+
138
+ page: 1,
139
+
140
+ num_pages: 1,
141
+
142
+ page_size: 1,
143
+
144
+ next_page_uri: "TS",
145
+
146
+ exports: [],
147
+
148
+ invalid_attribute: true
149
+ )
150
+ }.to raise_error(ArgumentError)
151
+ end
152
+ end
153
+
154
+ describe 'test method "valid"' do
155
+ it "checks if properties are valid" do
156
+ instance = Freeclimb::ExportList.new(
157
+ total: 1,
158
+
159
+ start: 1,
160
+
161
+ _end: 1,
162
+
163
+ page: 1,
164
+
165
+ num_pages: 1,
166
+
167
+ page_size: 1,
168
+
169
+ next_page_uri: "TS",
170
+
171
+ exports: []
172
+ )
173
+ expect(instance.valid?).to eq(true)
174
+ end
175
+
176
+ skip "checks if properties are invalid" do
177
+ instance = Freeclimb::ExportList.new
178
+
179
+ expect(instance.valid?).to eq(false)
180
+ end
181
+ end
182
+
183
+ describe 'test method "eql?"' do
184
+ it "checks if objects are equal" do
185
+ instance_1 = Freeclimb::ExportList.new(
186
+ total: 1,
187
+
188
+ start: 1,
189
+
190
+ _end: 1,
191
+
192
+ page: 1,
193
+
194
+ num_pages: 1,
195
+
196
+ page_size: 1,
197
+
198
+ next_page_uri: "TS",
199
+
200
+ exports: []
201
+ )
202
+ instance_2 = Freeclimb::ExportList.new(
203
+ total: 1,
204
+
205
+ start: 1,
206
+
207
+ _end: 1,
208
+
209
+ page: 1,
210
+
211
+ num_pages: 1,
212
+
213
+ page_size: 1,
214
+
215
+ next_page_uri: "TS",
216
+
217
+ exports: []
218
+ )
219
+ expect(instance_1.eql?(instance_2)).to eq(true)
220
+ end
221
+
222
+ it "checks if objects are not equal" do
223
+ instance_1 = Freeclimb::ExportList.new(
224
+ total: 2,
225
+
226
+ start: 2,
227
+
228
+ _end: 2,
229
+
230
+ page: 2,
231
+
232
+ num_pages: 2,
233
+
234
+ page_size: 2,
235
+
236
+ next_page_uri: "TS",
237
+
238
+ exports: []
239
+ )
240
+ instance_2 = Freeclimb::ExportList.new(
241
+ total: 1,
242
+
243
+ start: 1,
244
+
245
+ _end: 1,
246
+
247
+ page: 1,
248
+
249
+ num_pages: 1,
250
+
251
+ page_size: 1,
252
+
253
+ next_page_uri: "ST",
254
+
255
+ exports: nil
256
+ )
257
+ expect(instance_1.eql?(instance_2)).to eq(false)
258
+ end
259
+ end
260
+
261
+ describe 'test method "hash"' do
262
+ it "calculates hash code" do
263
+ instance = Freeclimb::ExportList.new(
264
+ total: 1,
265
+
266
+ start: 1,
267
+
268
+ _end: 1,
269
+
270
+ page: 1,
271
+
272
+ num_pages: 1,
273
+
274
+ page_size: 1,
275
+
276
+ next_page_uri: "TS",
277
+
278
+ exports: []
279
+ )
280
+ expect(instance.hash).to be_a_kind_of(Integer)
281
+ end
282
+ end
283
+
284
+ describe 'test method "build_from_hash"' do
285
+ it "builds equivalent model from hash code" do
286
+ instance_1 = Freeclimb::ExportList.new(
287
+ total: 1,
288
+
289
+ start: 1,
290
+
291
+ _end: 1,
292
+
293
+ page: 1,
294
+
295
+ num_pages: 1,
296
+
297
+ page_size: 1,
298
+
299
+ next_page_uri: "TS",
300
+
301
+ exports: []
302
+ )
303
+ instance_2 = Freeclimb::ExportList.new(
304
+ total: 1,
305
+
306
+ start: 1,
307
+
308
+ _end: 1,
309
+
310
+ page: 1,
311
+
312
+ num_pages: 1,
313
+
314
+ page_size: 1,
315
+
316
+ next_page_uri: "TS",
317
+
318
+ exports: []
319
+ )
320
+
321
+ expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
322
+ end
323
+ end
324
+
325
+ describe 'test method "_deserialize"' do
326
+ instance = Freeclimb::ExportList.new(
327
+ total: 1,
328
+
329
+ start: 1,
330
+
331
+ _end: 1,
332
+
333
+ page: 1,
334
+
335
+ num_pages: 1,
336
+
337
+ page_size: 1,
338
+
339
+ next_page_uri: "TS",
340
+
341
+ exports: []
342
+ )
343
+ it "deserializes the data of total" do
344
+ expect(instance._deserialize("Integer", instance.total)).to be_a_kind_of(Integer)
345
+ end
346
+
347
+ it "deserializes the data of start" do
348
+ expect(instance._deserialize("Integer", instance.start)).to be_a_kind_of(Integer)
349
+ end
350
+
351
+ it "deserializes the data of _end" do
352
+ expect(instance._deserialize("Integer", instance._end)).to be_a_kind_of(Integer)
353
+ end
354
+
355
+ it "deserializes the data of page" do
356
+ expect(instance._deserialize("Integer", instance.page)).to be_a_kind_of(Integer)
357
+ end
358
+
359
+ it "deserializes the data of num_pages" do
360
+ expect(instance._deserialize("Integer", instance.num_pages)).to be_a_kind_of(Integer)
361
+ end
362
+
363
+ it "deserializes the data of page_size" do
364
+ expect(instance._deserialize("Integer", instance.page_size)).to be_a_kind_of(Integer)
365
+ end
366
+
367
+ it "deserializes the data of next_page_uri" do
368
+ expect(instance._deserialize("String", instance.next_page_uri)).to be_a_kind_of(String)
369
+ end
370
+
371
+ it "deserializes the data of exports" do
372
+ expect(instance._deserialize("Array<ExportResult>", instance.exports)).to be_a_kind_of(Array)
373
+ end
374
+ end
375
+
376
+ describe 'test method "to_s"' do
377
+ it "returns the string representation of the object" do
378
+ instance = Freeclimb::ExportList.new(
379
+ total: 1,
380
+
381
+ start: 1,
382
+
383
+ _end: 1,
384
+
385
+ page: 1,
386
+
387
+ num_pages: 1,
388
+
389
+ page_size: 1,
390
+
391
+ next_page_uri: "TS",
392
+
393
+ exports: []
394
+ )
395
+ expect(instance.to_s).to eq(instance.to_hash.to_s)
396
+ end
397
+ end
398
+
399
+ describe 'test method "to_hash"' do
400
+ it "returns the object in the form of hash" do
401
+ instance = Freeclimb::ExportList.new(
402
+ total: 1,
403
+
404
+ start: 1,
405
+
406
+ _end: 1,
407
+
408
+ page: 1,
409
+
410
+ num_pages: 1,
411
+
412
+ page_size: 1,
413
+
414
+ next_page_uri: "TS",
415
+
416
+ exports: []
417
+ )
418
+ expect(instance.to_hash).to be_a_kind_of(Hash)
419
+ end
420
+ it "creates equal hash for two equal objects" do
421
+ instance_1 = Freeclimb::ExportList.new(
422
+ total: 1,
423
+
424
+ start: 1,
425
+
426
+ _end: 1,
427
+
428
+ page: 1,
429
+
430
+ num_pages: 1,
431
+
432
+ page_size: 1,
433
+
434
+ next_page_uri: "TS",
435
+
436
+ exports: []
437
+ )
438
+ instance_2 = Freeclimb::ExportList.new(
439
+ total: 1,
440
+
441
+ start: 1,
442
+
443
+ _end: 1,
444
+
445
+ page: 1,
446
+
447
+ num_pages: 1,
448
+
449
+ page_size: 1,
450
+
451
+ next_page_uri: "TS",
452
+
453
+ exports: []
454
+ )
455
+ expect(instance_1.to_hash).to eq(instance_2.to_hash)
456
+ end
457
+ end
458
+
459
+ describe 'test method "_to_hash"' do
460
+ instance = Freeclimb::ExportList.new(
461
+ total: 1,
462
+
463
+ start: 1,
464
+
465
+ _end: 1,
466
+
467
+ page: 1,
468
+
469
+ num_pages: 1,
470
+
471
+ page_size: 1,
472
+
473
+ next_page_uri: "TS",
474
+
475
+ exports: []
476
+ )
477
+ it "returns total in the form of hash" do
478
+ expect(instance._to_hash(instance.total)).to eq(instance.total)
479
+ end
480
+ it "returns start in the form of hash" do
481
+ expect(instance._to_hash(instance.start)).to eq(instance.start)
482
+ end
483
+ it "returns _end in the form of hash" do
484
+ expect(instance._to_hash(instance._end)).to eq(instance._end)
485
+ end
486
+ it "returns page in the form of hash" do
487
+ expect(instance._to_hash(instance.page)).to eq(instance.page)
488
+ end
489
+ it "returns num_pages in the form of hash" do
490
+ expect(instance._to_hash(instance.num_pages)).to eq(instance.num_pages)
491
+ end
492
+ it "returns page_size in the form of hash" do
493
+ expect(instance._to_hash(instance.page_size)).to eq(instance.page_size)
494
+ end
495
+ it "returns next_page_uri in the form of hash" do
496
+ expect(instance._to_hash(instance.next_page_uri)).to eq(instance.next_page_uri)
497
+ end
498
+ it "returns exports in the form of hash" do
499
+ expect(instance._to_hash(instance.exports)).to eq(instance.exports)
500
+ end
501
+ end
502
+ end
@@ -0,0 +1,43 @@
1
+ # #FreeClimb API
2
+ #
3
+ # FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
4
+ #
5
+ # The version of the OpenAPI document: 1.0.0
6
+ # Contact: support@freeclimb.com
7
+ # Generated by: https://openapi-generator.tech
8
+ # OpenAPI Generator version: 7.9.0
9
+ #
10
+
11
+ require "spec_helper"
12
+ require "json"
13
+ require "date"
14
+ include Freeclimb
15
+
16
+ # Unit tests for Freeclimb::ExportOutputType
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe Freeclimb::ExportOutputType do
20
+ let(:instance) { Freeclimb::ExportOutputType.new }
21
+
22
+ describe "test an instance of ExportOutputType" do
23
+ it "should create an instance of ExportOutputType" do
24
+ expect(instance).to be_instance_of(Freeclimb::ExportOutputType)
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "CSV"' do
29
+ it "should work" do
30
+ expect { Freeclimb::ExportOutputType::CSV = "csv" }.not_to raise_error
31
+ end
32
+ it "should serialize to enum" do
33
+ expectedValue = Freeclimb::ExportOutputType::CSV
34
+ calculatedValue = Freeclimb::ExportOutputType.build_from_hash("csv")
35
+ expect(expectedValue).to eq(calculatedValue)
36
+ end
37
+ it "should deserialize to string" do
38
+ expectedValue = "csv"
39
+ calculatedValue = Freeclimb::ExportOutputType::CSV
40
+ expect(expectedValue).to eq(calculatedValue)
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,162 @@
1
+ # #FreeClimb API
2
+ #
3
+ # FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
4
+ #
5
+ # The version of the OpenAPI document: 1.0.0
6
+ # Contact: support@freeclimb.com
7
+ # Generated by: https://openapi-generator.tech
8
+ # OpenAPI Generator version: 7.9.0
9
+ #
10
+
11
+ require "spec_helper"
12
+ require "json"
13
+ require "date"
14
+ include Freeclimb
15
+
16
+ # Unit tests for Freeclimb::ExportRequestOutput
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe Freeclimb::ExportRequestOutput do
20
+ let(:instance) { Freeclimb::ExportRequestOutput.new }
21
+
22
+ describe "test an instance of ExportRequestOutput" do
23
+ it "should create an instance of ExportRequestOutput" do
24
+ expect(instance).to be_instance_of(Freeclimb::ExportRequestOutput)
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "type"' do
29
+ it "assigns value CSV" do
30
+ instance.type = Freeclimb::ExportOutputType::CSV
31
+ expect(instance.type).to eq(Freeclimb::ExportOutputType::CSV)
32
+ end
33
+ end
34
+ describe 'test method "initialize"' do
35
+ it "properly initializes with values" do
36
+ expect {
37
+ Freeclimb::ExportRequestOutput.new(
38
+ type: Freeclimb::ExportOutputType::CSV
39
+ )
40
+ }.not_to raise_error
41
+ end
42
+ it "fails to initialize with input argument that is not a hash in Freeclimb::ExportRequestOutput" do
43
+ expect {
44
+ Freeclimb::ExportRequestOutput.new(
45
+ type: Freeclimb::ExportOutputType::CSV,
46
+
47
+ invalid_attribute: true
48
+ )
49
+ }.to raise_error(ArgumentError)
50
+ end
51
+ it "fails to initialize with invalid attribute" do
52
+ expect {
53
+ Freeclimb::ExportRequestOutput.new(
54
+ type: Freeclimb::ExportOutputType::CSV,
55
+
56
+ invalid_attribute: true
57
+ )
58
+ }.to raise_error(ArgumentError)
59
+ end
60
+ end
61
+
62
+ describe 'test method "valid"' do
63
+ it "checks if properties are valid" do
64
+ instance = Freeclimb::ExportRequestOutput.new(
65
+ type: Freeclimb::ExportOutputType::CSV
66
+ )
67
+ expect(instance.valid?).to eq(true)
68
+ end
69
+
70
+ skip "checks if properties are invalid" do
71
+ instance = Freeclimb::ExportRequestOutput.new
72
+
73
+ expect(instance.valid?).to eq(false)
74
+ end
75
+ end
76
+
77
+ describe 'test method "eql?"' do
78
+ it "checks if objects are equal" do
79
+ instance_1 = Freeclimb::ExportRequestOutput.new(
80
+ type: Freeclimb::ExportOutputType::CSV
81
+ )
82
+ instance_2 = Freeclimb::ExportRequestOutput.new(
83
+ type: Freeclimb::ExportOutputType::CSV
84
+ )
85
+ expect(instance_1.eql?(instance_2)).to eq(true)
86
+ end
87
+
88
+ it "checks if objects are not equal" do
89
+ instance_1 = Freeclimb::ExportRequestOutput.new(
90
+ type: Freeclimb::ExportOutputType::CSV
91
+ )
92
+ instance_2 = Freeclimb::ExportRequestOutput.new(
93
+ type: nil
94
+ )
95
+ expect(instance_1.eql?(instance_2)).to eq(false)
96
+ end
97
+ end
98
+
99
+ describe 'test method "hash"' do
100
+ it "calculates hash code" do
101
+ instance = Freeclimb::ExportRequestOutput.new(
102
+ type: Freeclimb::ExportOutputType::CSV
103
+ )
104
+ expect(instance.hash).to be_a_kind_of(Integer)
105
+ end
106
+ end
107
+
108
+ describe 'test method "build_from_hash"' do
109
+ it "builds equivalent model from hash code" do
110
+ instance_1 = Freeclimb::ExportRequestOutput.new(
111
+ type: Freeclimb::ExportOutputType::CSV
112
+ )
113
+ instance_2 = Freeclimb::ExportRequestOutput.new(
114
+ type: Freeclimb::ExportOutputType::CSV
115
+ )
116
+
117
+ expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
118
+ end
119
+ end
120
+
121
+ describe 'test method "_deserialize"' do
122
+ Freeclimb::ExportRequestOutput.new(
123
+ type: Freeclimb::ExportOutputType::CSV
124
+ )
125
+ end
126
+
127
+ describe 'test method "to_s"' do
128
+ it "returns the string representation of the object" do
129
+ instance = Freeclimb::ExportRequestOutput.new(
130
+ type: Freeclimb::ExportOutputType::CSV
131
+ )
132
+ expect(instance.to_s).to eq(instance.to_hash.to_s)
133
+ end
134
+ end
135
+
136
+ describe 'test method "to_hash"' do
137
+ it "returns the object in the form of hash" do
138
+ instance = Freeclimb::ExportRequestOutput.new(
139
+ type: Freeclimb::ExportOutputType::CSV
140
+ )
141
+ expect(instance.to_hash).to be_a_kind_of(Hash)
142
+ end
143
+ it "creates equal hash for two equal objects" do
144
+ instance_1 = Freeclimb::ExportRequestOutput.new(
145
+ type: Freeclimb::ExportOutputType::CSV
146
+ )
147
+ instance_2 = Freeclimb::ExportRequestOutput.new(
148
+ type: Freeclimb::ExportOutputType::CSV
149
+ )
150
+ expect(instance_1.to_hash).to eq(instance_2.to_hash)
151
+ end
152
+ end
153
+
154
+ describe 'test method "_to_hash"' do
155
+ instance = Freeclimb::ExportRequestOutput.new(
156
+ type: Freeclimb::ExportOutputType::CSV
157
+ )
158
+ it "returns type in the form of hash" do
159
+ expect(instance._to_hash(instance.type)).to eq(instance.type)
160
+ end
161
+ end
162
+ end