telestream_cloud_flip 2.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 +7 -0
- data/Gemfile +7 -0
- data/README.md +130 -0
- data/Rakefile +8 -0
- data/docs/CanceledResponse.md +8 -0
- data/docs/CloudNotificationSettings.md +11 -0
- data/docs/CloudNotificationSettingsEvents.md +11 -0
- data/docs/CopyProfileBody.md +9 -0
- data/docs/CountResponse.md +8 -0
- data/docs/CreateEncodingBody.md +10 -0
- data/docs/CreateVideoBody.md +12 -0
- data/docs/DeletedResponse.md +8 -0
- data/docs/Encoding.md +38 -0
- data/docs/EncodingSignedUrl.md +8 -0
- data/docs/EncodingSignedUrls.md +8 -0
- data/docs/Error.md +9 -0
- data/docs/ExtraFile.md +10 -0
- data/docs/Factory.md +25 -0
- data/docs/FactoryBody.md +23 -0
- data/docs/FactoryBodyStorageCredentialAttributes.md +11 -0
- data/docs/FactorySync.md +8 -0
- data/docs/FactorySyncBody.md +8 -0
- data/docs/FlipApi.md +2179 -0
- data/docs/PaginatedEncodingsCollection.md +11 -0
- data/docs/PaginatedFactoryCollection.md +11 -0
- data/docs/PaginatedProfilesCollection.md +11 -0
- data/docs/PaginatedVideoCollection.md +11 -0
- data/docs/PaginatedWorkflowsCollection.md +11 -0
- data/docs/Profile.md +135 -0
- data/docs/ProfileBody.md +137 -0
- data/docs/ResubmitVideoBody.md +8 -0
- data/docs/RetriedResponse.md +8 -0
- data/docs/SignedVideoUrl.md +8 -0
- data/docs/UpdateEncodingBody.md +9 -0
- data/docs/UploadSession.md +13 -0
- data/docs/Video.md +31 -0
- data/docs/VideoMetadata.md +7 -0
- data/docs/VideoUploadBody.md +24 -0
- data/git_push.sh +55 -0
- data/lib/telestream_cloud_flip/api/flip_api.rb +2385 -0
- data/lib/telestream_cloud_flip/api_client.rb +389 -0
- data/lib/telestream_cloud_flip/api_error.rb +38 -0
- data/lib/telestream_cloud_flip/configuration.rb +209 -0
- data/lib/telestream_cloud_flip/models/canceled_response.rb +189 -0
- data/lib/telestream_cloud_flip/models/cloud_notification_settings.rb +237 -0
- data/lib/telestream_cloud_flip/models/cloud_notification_settings_events.rb +239 -0
- data/lib/telestream_cloud_flip/models/copy_profile_body.rb +209 -0
- data/lib/telestream_cloud_flip/models/count_response.rb +189 -0
- data/lib/telestream_cloud_flip/models/create_encoding_body.rb +214 -0
- data/lib/telestream_cloud_flip/models/create_video_body.rb +231 -0
- data/lib/telestream_cloud_flip/models/deleted_response.rb +189 -0
- data/lib/telestream_cloud_flip/models/encoding.rb +486 -0
- data/lib/telestream_cloud_flip/models/encoding_signed_url.rb +189 -0
- data/lib/telestream_cloud_flip/models/encoding_signed_urls.rb +191 -0
- data/lib/telestream_cloud_flip/models/error.rb +199 -0
- data/lib/telestream_cloud_flip/models/extra_file.rb +221 -0
- data/lib/telestream_cloud_flip/models/factory.rb +388 -0
- data/lib/telestream_cloud_flip/models/factory_body.rb +374 -0
- data/lib/telestream_cloud_flip/models/factory_body_storage_credential_attributes.rb +215 -0
- data/lib/telestream_cloud_flip/models/factory_sync.rb +222 -0
- data/lib/telestream_cloud_flip/models/factory_sync_body.rb +227 -0
- data/lib/telestream_cloud_flip/models/paginated_encodings_collection.rb +240 -0
- data/lib/telestream_cloud_flip/models/paginated_factory_collection.rb +220 -0
- data/lib/telestream_cloud_flip/models/paginated_profiles_collection.rb +220 -0
- data/lib/telestream_cloud_flip/models/paginated_video_collection.rb +220 -0
- data/lib/telestream_cloud_flip/models/paginated_workflows_collection.rb +220 -0
- data/lib/telestream_cloud_flip/models/profile.rb +1777 -0
- data/lib/telestream_cloud_flip/models/profile_body.rb +1762 -0
- data/lib/telestream_cloud_flip/models/resubmit_video_body.rb +189 -0
- data/lib/telestream_cloud_flip/models/retried_response.rb +189 -0
- data/lib/telestream_cloud_flip/models/signed_video_url.rb +189 -0
- data/lib/telestream_cloud_flip/models/update_encoding_body.rb +199 -0
- data/lib/telestream_cloud_flip/models/upload_session.rb +249 -0
- data/lib/telestream_cloud_flip/models/video.rb +418 -0
- data/lib/telestream_cloud_flip/models/video_metadata.rb +179 -0
- data/lib/telestream_cloud_flip/models/video_upload_body.rb +362 -0
- data/lib/telestream_cloud_flip/uploader.rb +244 -0
- data/lib/telestream_cloud_flip/version.rb +18 -0
- data/lib/telestream_cloud_flip.rb +79 -0
- data/spec/api/flip_api_spec.rb +550 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/canceled_response_spec.rb +42 -0
- data/spec/models/cloud_notification_settings_events_spec.rb +60 -0
- data/spec/models/cloud_notification_settings_spec.rb +60 -0
- data/spec/models/copy_profile_body_spec.rb +48 -0
- data/spec/models/count_response_spec.rb +42 -0
- data/spec/models/create_encoding_body_spec.rb +54 -0
- data/spec/models/create_video_body_spec.rb +66 -0
- data/spec/models/deleted_response_spec.rb +42 -0
- data/spec/models/encoding_signed_url_spec.rb +42 -0
- data/spec/models/encoding_signed_urls_spec.rb +42 -0
- data/spec/models/encoding_spec.rb +222 -0
- data/spec/models/error_spec.rb +48 -0
- data/spec/models/extra_file_spec.rb +54 -0
- data/spec/models/factory_body_spec.rb +136 -0
- data/spec/models/factory_body_storage_credential_attributes_spec.rb +60 -0
- data/spec/models/factory_spec.rb +148 -0
- data/spec/models/factory_sync_body_spec.rb +46 -0
- data/spec/models/factory_sync_spec.rb +46 -0
- data/spec/models/paginated_encodings_collection_spec.rb +60 -0
- data/spec/models/paginated_factory_collection_spec.rb +60 -0
- data/spec/models/paginated_profiles_collection_spec.rb +60 -0
- data/spec/models/paginated_video_collection_spec.rb +60 -0
- data/spec/models/paginated_workflows_collection_spec.rb +60 -0
- data/spec/models/profile_body_spec.rb +916 -0
- data/spec/models/profile_spec.rb +916 -0
- data/spec/models/resubmit_video_body_spec.rb +42 -0
- data/spec/models/retried_response_spec.rb +42 -0
- data/spec/models/signed_video_url_spec.rb +42 -0
- data/spec/models/update_encoding_body_spec.rb +48 -0
- data/spec/models/upload_session_spec.rb +72 -0
- data/spec/models/video_metadata_spec.rb +36 -0
- data/spec/models/video_spec.rb +180 -0
- data/spec/models/video_upload_body_spec.rb +138 -0
- data/spec/spec_helper.rb +111 -0
- data/telestream_cloud_flip.gemspec +47 -0
- metadata +396 -0
@@ -0,0 +1,916 @@
|
|
1
|
+
=begin
|
2
|
+
#Flip API
|
3
|
+
|
4
|
+
#Description
|
5
|
+
|
6
|
+
OpenAPI spec version: 3.1.0
|
7
|
+
Contact: cloudsupport@telestream.net
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TelestreamCloud::Flip::ProfileBody
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ProfileBody' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TelestreamCloud::Flip::ProfileBody.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ProfileBody' do
|
31
|
+
it 'should create an instance of ProfileBody' do
|
32
|
+
expect(@instance).to be_instance_of(TelestreamCloud::Flip::ProfileBody)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "preset_name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["aac", "avc.intra", "crocodoc", "dash.variant", "dash.variant.audio", "dash.variant.webvtt", "dash.variant.ttml", "dash.variant.playlist", "dash.variant.nvenc", "dash.muxer", "dash.muxer.audio", "dnxhd", "h264", "h264.baseline", "h264.nvenc.telestream.mov", "h264.nvenc", "h265", "h265.4K", "hls.muxer", "hls.muxer.audio", "hls.variant", "hls.variant.audio", "hls.variant.playlist", "hls.variant.nvenc", "hls.variant.webvtt", "hss", "hss.variant", "hss.variant.audio", "hss.variant.playlist", "imx", "iphone_and_ipad", "jpeg", "m4a", "mp3", "mpeg2", "mpegps", "mpegts.h264", "mpegts.mpeg2", "oga", "ogg", "png", "prores422", "quick_one_thumbnail", "thumbnail", "transcript", "vorbis", "webm", "webm.vp8", "webm.vp9", "xdcam"])
|
39
|
+
#validator.allowable_values.each do |value|
|
40
|
+
# expect { @instance.preset_name = value }.not_to raise_error
|
41
|
+
#end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "advanced_fps_conversion"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
48
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["telestream", "tachyon"])
|
49
|
+
#validator.allowable_values.each do |value|
|
50
|
+
# expect { @instance.advanced_fps_conversion = value }.not_to raise_error
|
51
|
+
#end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'test attribute "aspect_mode"' do
|
56
|
+
it 'should work' do
|
57
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
58
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["preserve", "constrain", "letterbox", "pad", "fill (crop)", "stretch", "center"])
|
59
|
+
#validator.allowable_values.each do |value|
|
60
|
+
# expect { @instance.aspect_mode = value }.not_to raise_error
|
61
|
+
#end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "aspect_ratio"' 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
|
+
describe 'test attribute "audio_bitrate"' 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
|
+
describe 'test attribute "audio_channels"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "audio_channels_layout"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["1.0", "2.0", "2.1", "3.0", "3.0(back)", "3.1", "4.0", "4.1", "quad", "5.0", "5.0(side)", "5.1(side)", "6.0", "6.1", "7.0", "7.1", "mono", "stereo"])
|
87
|
+
#validator.allowable_values.each do |value|
|
88
|
+
# expect { @instance.audio_channels_layout = value }.not_to raise_error
|
89
|
+
#end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe 'test attribute "audio_channels_per_track"' do
|
94
|
+
it 'should work' do
|
95
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe 'test attribute "audio_codec"' do
|
100
|
+
it 'should work' do
|
101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
describe 'test attribute "audio_format"' do
|
106
|
+
it 'should work' do
|
107
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
describe 'test attribute "audio_pid"' do
|
112
|
+
it 'should work' do
|
113
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
describe 'test attribute "audio_profile"' do
|
118
|
+
it 'should work' do
|
119
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
describe 'test attribute "audio_sample_rate"' do
|
124
|
+
it 'should work' do
|
125
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
describe 'test attribute "audio_streams"' do
|
130
|
+
it 'should work' do
|
131
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
describe 'test attribute "avcintra_class"' do
|
136
|
+
it 'should work' do
|
137
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
138
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["50", "100"])
|
139
|
+
#validator.allowable_values.each do |value|
|
140
|
+
# expect { @instance.avcintra_class = value }.not_to raise_error
|
141
|
+
#end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
describe 'test attribute "buffer_size"' do
|
146
|
+
it 'should work' do
|
147
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
describe 'test attribute "buffer_size_in_packets"' 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
|
+
describe 'test attribute "clip_length"' do
|
158
|
+
it 'should work' do
|
159
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
describe 'test attribute "clip_offset"' do
|
164
|
+
it 'should work' do
|
165
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
describe 'test attribute "closed_captions"' do
|
170
|
+
it 'should work' do
|
171
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
172
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["add", "burn"])
|
173
|
+
#validator.allowable_values.each do |value|
|
174
|
+
# expect { @instance.closed_captions = value }.not_to raise_error
|
175
|
+
#end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe 'test attribute "dash_profile"' do
|
180
|
+
it 'should work' do
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
describe 'test attribute "deinterlace"' do
|
186
|
+
it 'should work' do
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
188
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["keep_fps", "double_fps"])
|
189
|
+
#validator.allowable_values.each do |value|
|
190
|
+
# expect { @instance.deinterlace = value }.not_to raise_error
|
191
|
+
#end
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
195
|
+
describe 'test attribute "deinterlace_frames"' do
|
196
|
+
it 'should work' do
|
197
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
201
|
+
describe 'test attribute "dnxhd_type"' 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
|
+
describe 'test attribute "encryption"' do
|
208
|
+
it 'should work' do
|
209
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
describe 'test attribute "extname"' do
|
214
|
+
it 'should work' do
|
215
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
describe 'test attribute "fps"' do
|
220
|
+
it 'should work' do
|
221
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
describe 'test attribute "frame_offsets"' do
|
226
|
+
it 'should work' do
|
227
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
describe 'test attribute "frame_interval"' do
|
232
|
+
it 'should work' do
|
233
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
describe 'test attribute "frame_count"' do
|
238
|
+
it 'should work' do
|
239
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
describe 'test attribute "h264_level"' do
|
244
|
+
it 'should work' do
|
245
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
246
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["1.0", "1b", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "3.0", "3.1", "3.2", "4.0", "4.1", "4.2", "5.0", "5.1"])
|
247
|
+
#validator.allowable_values.each do |value|
|
248
|
+
# expect { @instance.h264_level = value }.not_to raise_error
|
249
|
+
#end
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
describe 'test attribute "h264_profile"' do
|
254
|
+
it 'should work' do
|
255
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
256
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["baseline", "main", "high", "high10", "high422", "high444"])
|
257
|
+
#validator.allowable_values.each do |value|
|
258
|
+
# expect { @instance.h264_profile = value }.not_to raise_error
|
259
|
+
#end
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
describe 'test attribute "h264_tune"' do
|
264
|
+
it 'should work' do
|
265
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
266
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["film", "animation", "grain", "psnr", "ssim", "fastdecode", "zerolatency"])
|
267
|
+
#validator.allowable_values.each do |value|
|
268
|
+
# expect { @instance.h264_tune = value }.not_to raise_error
|
269
|
+
#end
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
describe 'test attribute "height"' do
|
274
|
+
it 'should work' do
|
275
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
describe 'test attribute "imx_type"' do
|
280
|
+
it 'should work' do
|
281
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
describe 'test attribute "interlace"' do
|
286
|
+
it 'should work' do
|
287
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
describe 'test attribute "keyframe_interval"' do
|
292
|
+
it 'should work' do
|
293
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
describe 'test attribute "keyframe_rate"' do
|
298
|
+
it 'should work' do
|
299
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
describe 'test attribute "max_rate"' do
|
304
|
+
it 'should work' do
|
305
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
describe 'test attribute "merge_audio_streams"' do
|
310
|
+
it 'should work' do
|
311
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
describe 'test attribute "name"' do
|
316
|
+
it 'should work' do
|
317
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
describe 'test attribute "outputs_path_format"' do
|
322
|
+
it 'should work' do
|
323
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
describe 'test attribute "pmt_pid"' do
|
328
|
+
it 'should work' do
|
329
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
330
|
+
end
|
331
|
+
end
|
332
|
+
|
333
|
+
describe 'test attribute "prores_format"' do
|
334
|
+
it 'should work' do
|
335
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
describe 'test attribute "segment_time"' do
|
340
|
+
it 'should work' do
|
341
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
342
|
+
end
|
343
|
+
end
|
344
|
+
|
345
|
+
describe 'test attribute "size"' do
|
346
|
+
it 'should work' do
|
347
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
351
|
+
describe 'test attribute "tar"' do
|
352
|
+
it 'should work' do
|
353
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
describe 'test attribute "transport_rate"' do
|
358
|
+
it 'should work' do
|
359
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
363
|
+
describe 'test attribute "ts_pids"' do
|
364
|
+
it 'should work' do
|
365
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
describe 'test attribute "upscale"' do
|
370
|
+
it 'should work' do
|
371
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
describe 'test attribute "variants"' do
|
376
|
+
it 'should work' do
|
377
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
378
|
+
end
|
379
|
+
end
|
380
|
+
|
381
|
+
describe 'test attribute "video_bitrate"' do
|
382
|
+
it 'should work' do
|
383
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
describe 'test attribute "video_pid"' do
|
388
|
+
it 'should work' do
|
389
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
393
|
+
describe 'test attribute "watermark_bottom"' do
|
394
|
+
it 'should work' do
|
395
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
describe 'test attribute "watermark_height"' do
|
400
|
+
it 'should work' do
|
401
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
405
|
+
describe 'test attribute "watermark_left"' do
|
406
|
+
it 'should work' do
|
407
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
describe 'test attribute "watermark_right"' do
|
412
|
+
it 'should work' do
|
413
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
describe 'test attribute "watermark_top"' do
|
418
|
+
it 'should work' do
|
419
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
describe 'test attribute "watermark_url"' do
|
424
|
+
it 'should work' do
|
425
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
426
|
+
end
|
427
|
+
end
|
428
|
+
|
429
|
+
describe 'test attribute "watermark_width"' do
|
430
|
+
it 'should work' do
|
431
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
435
|
+
describe 'test attribute "width"' do
|
436
|
+
it 'should work' do
|
437
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
438
|
+
end
|
439
|
+
end
|
440
|
+
|
441
|
+
describe 'test attribute "x264_options"' do
|
442
|
+
it 'should work' do
|
443
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
describe 'test attribute "x265_options"' do
|
448
|
+
it 'should work' do
|
449
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
450
|
+
end
|
451
|
+
end
|
452
|
+
|
453
|
+
describe 'test attribute "xdcam_format"' do
|
454
|
+
it 'should work' do
|
455
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
describe 'test attribute "mute_audio_tracks"' do
|
460
|
+
it 'should work' do
|
461
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
465
|
+
describe 'test attribute "byte_range_requests"' do
|
466
|
+
it 'should work' do
|
467
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
471
|
+
describe 'test attribute "lang"' do
|
472
|
+
it 'should work' do
|
473
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
describe 'test attribute "use_editlist"' do
|
478
|
+
it 'should work' do
|
479
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
483
|
+
describe 'test attribute "audio_map"' do
|
484
|
+
it 'should work' do
|
485
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
486
|
+
end
|
487
|
+
end
|
488
|
+
|
489
|
+
describe 'test attribute "audio_stream_id"' do
|
490
|
+
it 'should work' do
|
491
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
495
|
+
describe 'test attribute "bumpers"' do
|
496
|
+
it 'should work' do
|
497
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
501
|
+
describe 'test attribute "codec_preset"' do
|
502
|
+
it 'should work' do
|
503
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
504
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["ultrafast", "superfast", "veryfast", "faster", "fast", "medium", "slow", "slower", "veryslow", "placebo"])
|
505
|
+
#validator.allowable_values.each do |value|
|
506
|
+
# expect { @instance.codec_preset = value }.not_to raise_error
|
507
|
+
#end
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
511
|
+
describe 'test attribute "color_metadata"' do
|
512
|
+
it 'should work' do
|
513
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
514
|
+
end
|
515
|
+
end
|
516
|
+
|
517
|
+
describe 'test attribute "crop_input_bottom"' do
|
518
|
+
it 'should work' do
|
519
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
523
|
+
describe 'test attribute "crop_input_height"' do
|
524
|
+
it 'should work' do
|
525
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
526
|
+
end
|
527
|
+
end
|
528
|
+
|
529
|
+
describe 'test attribute "crop_input_left"' do
|
530
|
+
it 'should work' do
|
531
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
532
|
+
end
|
533
|
+
end
|
534
|
+
|
535
|
+
describe 'test attribute "crop_input_right"' do
|
536
|
+
it 'should work' do
|
537
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
538
|
+
end
|
539
|
+
end
|
540
|
+
|
541
|
+
describe 'test attribute "crop_input_top"' do
|
542
|
+
it 'should work' do
|
543
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
describe 'test attribute "crop_input_width"' do
|
548
|
+
it 'should work' do
|
549
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
550
|
+
end
|
551
|
+
end
|
552
|
+
|
553
|
+
describe 'test attribute "dynamic_recipe"' do
|
554
|
+
it 'should work' do
|
555
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
556
|
+
end
|
557
|
+
end
|
558
|
+
|
559
|
+
describe 'test attribute "playlist_type"' do
|
560
|
+
it 'should work' do
|
561
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
562
|
+
end
|
563
|
+
end
|
564
|
+
|
565
|
+
describe 'test attribute "preset_version"' do
|
566
|
+
it 'should work' do
|
567
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
568
|
+
end
|
569
|
+
end
|
570
|
+
|
571
|
+
describe 'test attribute "segment_delimiter"' do
|
572
|
+
it 'should work' do
|
573
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
574
|
+
end
|
575
|
+
end
|
576
|
+
|
577
|
+
describe 'test attribute "sws_flags"' do
|
578
|
+
it 'should work' do
|
579
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
583
|
+
describe 'test attribute "telestream_block_size"' do
|
584
|
+
it 'should work' do
|
585
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
586
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["16x16", "24x24", "32x32"])
|
587
|
+
#validator.allowable_values.each do |value|
|
588
|
+
# expect { @instance.telestream_block_size = value }.not_to raise_error
|
589
|
+
#end
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
593
|
+
describe 'test attribute "telestream_blur_scaler"' do
|
594
|
+
it 'should work' do
|
595
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
596
|
+
end
|
597
|
+
end
|
598
|
+
|
599
|
+
describe 'test attribute "telestream_cost_scaler"' do
|
600
|
+
it 'should work' do
|
601
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
602
|
+
end
|
603
|
+
end
|
604
|
+
|
605
|
+
describe 'test attribute "telestream_search_length_scaler"' do
|
606
|
+
it 'should work' do
|
607
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
608
|
+
end
|
609
|
+
end
|
610
|
+
|
611
|
+
describe 'test attribute "telestream_subpel_mode"' do
|
612
|
+
it 'should work' do
|
613
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
614
|
+
end
|
615
|
+
end
|
616
|
+
|
617
|
+
describe 'test attribute "trailers"' do
|
618
|
+
it 'should work' do
|
619
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
620
|
+
end
|
621
|
+
end
|
622
|
+
|
623
|
+
describe 'test attribute "vantage_group_id"' do
|
624
|
+
it 'should work' do
|
625
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
626
|
+
end
|
627
|
+
end
|
628
|
+
|
629
|
+
describe 'test attribute "watermark_bumpers"' do
|
630
|
+
it 'should work' do
|
631
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
632
|
+
end
|
633
|
+
end
|
634
|
+
|
635
|
+
describe 'test attribute "watermark_trailers"' do
|
636
|
+
it 'should work' do
|
637
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
638
|
+
end
|
639
|
+
end
|
640
|
+
|
641
|
+
describe 'test attribute "workorder_criteria"' do
|
642
|
+
it 'should work' do
|
643
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
644
|
+
end
|
645
|
+
end
|
646
|
+
|
647
|
+
describe 'test attribute "tachyon_allow_remove_pulldown"' do
|
648
|
+
it 'should work' do
|
649
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
650
|
+
end
|
651
|
+
end
|
652
|
+
|
653
|
+
describe 'test attribute "tachyon_enable_post_pulldown_filter"' do
|
654
|
+
it 'should work' do
|
655
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
656
|
+
end
|
657
|
+
end
|
658
|
+
|
659
|
+
describe 'test attribute "tachyon_media_hint_is_cartoon"' do
|
660
|
+
it 'should work' do
|
661
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
665
|
+
describe 'test attribute "tachyon_media_hint_has_chroma_noise"' do
|
666
|
+
it 'should work' do
|
667
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
668
|
+
end
|
669
|
+
end
|
670
|
+
|
671
|
+
describe 'test attribute "tachyon_more_sensitive_remove_pulldown"' do
|
672
|
+
it 'should work' do
|
673
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
674
|
+
end
|
675
|
+
end
|
676
|
+
|
677
|
+
describe 'test attribute "tachyon_allow_add_standard_pd"' do
|
678
|
+
it 'should work' do
|
679
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
680
|
+
end
|
681
|
+
end
|
682
|
+
|
683
|
+
describe 'test attribute "tachyon_allow_add_2_2pd"' do
|
684
|
+
it 'should work' do
|
685
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
689
|
+
describe 'test attribute "tachyon_allow_add_4_4pd"' do
|
690
|
+
it 'should work' do
|
691
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
695
|
+
describe 'test attribute "tachyon_allow_add_4_6pd"' do
|
696
|
+
it 'should work' do
|
697
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
describe 'test attribute "tachyon_allow_add_euro_pd"' do
|
702
|
+
it 'should work' do
|
703
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
704
|
+
end
|
705
|
+
end
|
706
|
+
|
707
|
+
describe 'test attribute "tachyon_allow_add_adaptive_pd"' do
|
708
|
+
it 'should work' do
|
709
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
describe 'test attribute "tachyon_motion_amount"' do
|
714
|
+
it 'should work' do
|
715
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
716
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["xlow", "low", "medium", "high", "xhigh", "auto"])
|
717
|
+
#validator.allowable_values.each do |value|
|
718
|
+
# expect { @instance.tachyon_motion_amount = value }.not_to raise_error
|
719
|
+
#end
|
720
|
+
end
|
721
|
+
end
|
722
|
+
|
723
|
+
describe 'test attribute "tachyon_fallback_size"' do
|
724
|
+
it 'should work' do
|
725
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
726
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["small", "medium", "large", "xlarge", "auto"])
|
727
|
+
#validator.allowable_values.each do |value|
|
728
|
+
# expect { @instance.tachyon_fallback_size = value }.not_to raise_error
|
729
|
+
#end
|
730
|
+
end
|
731
|
+
end
|
732
|
+
|
733
|
+
describe 'test attribute "tachyon_mblock_size"' do
|
734
|
+
it 'should work' do
|
735
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
736
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["mb16", "mb32", "mb64", "mb128", "mb256", "auto"])
|
737
|
+
#validator.allowable_values.each do |value|
|
738
|
+
# expect { @instance.tachyon_mblock_size = value }.not_to raise_error
|
739
|
+
#end
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
743
|
+
describe 'test attribute "tachyon_cut_detection_sensitivity"' do
|
744
|
+
it 'should work' do
|
745
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
746
|
+
end
|
747
|
+
end
|
748
|
+
|
749
|
+
describe 'test attribute "eac3_evolution_enable"' do
|
750
|
+
it 'should work' do
|
751
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
752
|
+
end
|
753
|
+
end
|
754
|
+
|
755
|
+
describe 'test attribute "eac3_bitstream_mode"' do
|
756
|
+
it 'should work' do
|
757
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
758
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7"])
|
759
|
+
#validator.allowable_values.each do |value|
|
760
|
+
# expect { @instance.eac3_bitstream_mode = value }.not_to raise_error
|
761
|
+
#end
|
762
|
+
end
|
763
|
+
end
|
764
|
+
|
765
|
+
describe 'test attribute "eac3_ninety_degree_phase_shift"' do
|
766
|
+
it 'should work' do
|
767
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
771
|
+
describe 'test attribute "eac3_three_decibel_attenuation"' do
|
772
|
+
it 'should work' do
|
773
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
774
|
+
end
|
775
|
+
end
|
776
|
+
|
777
|
+
describe 'test attribute "eac3_enable_lfe_low_pass_filter"' do
|
778
|
+
it 'should work' do
|
779
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
780
|
+
end
|
781
|
+
end
|
782
|
+
|
783
|
+
describe 'test attribute "eac3_analog_to_digital_converter_type"' do
|
784
|
+
it 'should work' do
|
785
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
describe 'test attribute "eac3_stereo_downmix_preference"' do
|
790
|
+
it 'should work' do
|
791
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
792
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2", "m3"])
|
793
|
+
#validator.allowable_values.each do |value|
|
794
|
+
# expect { @instance.eac3_stereo_downmix_preference = value }.not_to raise_error
|
795
|
+
#end
|
796
|
+
end
|
797
|
+
end
|
798
|
+
|
799
|
+
describe 'test attribute "eac3_lt_rt_center_mix_level"' do
|
800
|
+
it 'should work' do
|
801
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
802
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c0", "c1", "c2", "c3", "c4", "c5", "c6", "c7"])
|
803
|
+
#validator.allowable_values.each do |value|
|
804
|
+
# expect { @instance.eac3_lt_rt_center_mix_level = value }.not_to raise_error
|
805
|
+
#end
|
806
|
+
end
|
807
|
+
end
|
808
|
+
|
809
|
+
describe 'test attribute "eac3_lt_rt_surround_mix_level"' do
|
810
|
+
it 'should work' do
|
811
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
812
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c3", "c4", "c5", "c6", "c7"])
|
813
|
+
#validator.allowable_values.each do |value|
|
814
|
+
# expect { @instance.eac3_lt_rt_surround_mix_level = value }.not_to raise_error
|
815
|
+
#end
|
816
|
+
end
|
817
|
+
end
|
818
|
+
|
819
|
+
describe 'test attribute "eac3_lo_ro_center_mix_level"' do
|
820
|
+
it 'should work' do
|
821
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
822
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c0", "c1", "c2", "c3", "c4", "c5", "c6", "c7"])
|
823
|
+
#validator.allowable_values.each do |value|
|
824
|
+
# expect { @instance.eac3_lo_ro_center_mix_level = value }.not_to raise_error
|
825
|
+
#end
|
826
|
+
end
|
827
|
+
end
|
828
|
+
|
829
|
+
describe 'test attribute "eac3_lo_ro_surround_mix_level"' do
|
830
|
+
it 'should work' do
|
831
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
832
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c3", "c4", "c5", "c6", "c7"])
|
833
|
+
#validator.allowable_values.each do |value|
|
834
|
+
# expect { @instance.eac3_lo_ro_surround_mix_level = value }.not_to raise_error
|
835
|
+
#end
|
836
|
+
end
|
837
|
+
end
|
838
|
+
|
839
|
+
describe 'test attribute "eac3_surround_ex_mode"' do
|
840
|
+
it 'should work' do
|
841
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
842
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2"])
|
843
|
+
#validator.allowable_values.each do |value|
|
844
|
+
# expect { @instance.eac3_surround_ex_mode = value }.not_to raise_error
|
845
|
+
#end
|
846
|
+
end
|
847
|
+
end
|
848
|
+
|
849
|
+
describe 'test attribute "eac3_drc_line_mode_profile"' do
|
850
|
+
it 'should work' do
|
851
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
852
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["p0", "p1", "p2", "p3", "p4", "p5"])
|
853
|
+
#validator.allowable_values.each do |value|
|
854
|
+
# expect { @instance.eac3_drc_line_mode_profile = value }.not_to raise_error
|
855
|
+
#end
|
856
|
+
end
|
857
|
+
end
|
858
|
+
|
859
|
+
describe 'test attribute "eac3_drc_rf_mode_profile"' do
|
860
|
+
it 'should work' do
|
861
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
862
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["p0", "p1", "p2", "p3", "p4", "p5"])
|
863
|
+
#validator.allowable_values.each do |value|
|
864
|
+
# expect { @instance.eac3_drc_rf_mode_profile = value }.not_to raise_error
|
865
|
+
#end
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
869
|
+
describe 'test attribute "eac3_dialog_normalization"' do
|
870
|
+
it 'should work' do
|
871
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
872
|
+
end
|
873
|
+
end
|
874
|
+
|
875
|
+
describe 'test attribute "eac3_room_type"' do
|
876
|
+
it 'should work' do
|
877
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
878
|
+
#validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2"])
|
879
|
+
#validator.allowable_values.each do |value|
|
880
|
+
# expect { @instance.eac3_room_type = value }.not_to raise_error
|
881
|
+
#end
|
882
|
+
end
|
883
|
+
end
|
884
|
+
|
885
|
+
describe 'test attribute "eac3_mixing_level"' do
|
886
|
+
it 'should work' do
|
887
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
888
|
+
end
|
889
|
+
end
|
890
|
+
|
891
|
+
describe 'test attribute "eac3_copyright_protected"' do
|
892
|
+
it 'should work' do
|
893
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
897
|
+
describe 'test attribute "eac3_original_bitstream"' do
|
898
|
+
it 'should work' do
|
899
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
900
|
+
end
|
901
|
+
end
|
902
|
+
|
903
|
+
describe 'test attribute "title"' do
|
904
|
+
it 'should work' do
|
905
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
906
|
+
end
|
907
|
+
end
|
908
|
+
|
909
|
+
describe 'test attribute "time_code"' do
|
910
|
+
it 'should work' do
|
911
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
912
|
+
end
|
913
|
+
end
|
914
|
+
|
915
|
+
end
|
916
|
+
|