mux_ruby 1.4.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/Gemfile +2 -1
 - data/Gemfile.lock +37 -35
 - data/README.md +6 -1
 - data/docs/Asset.md +3 -1
 - data/docs/AssetNonStandardInputReasons.md +16 -0
 - data/docs/AssetRecordingTimes.md +9 -0
 - data/docs/CreateAssetRequest.md +1 -1
 - data/docs/CreateLiveStreamRequest.md +2 -0
 - data/docs/CreateUploadRequest.md +1 -0
 - data/docs/DimensionValue.md +9 -0
 - data/docs/DimensionsApi.md +118 -0
 - data/docs/DisableLiveStreamResponse.md +8 -0
 - data/docs/EnableLiveStreamResponse.md +8 -0
 - data/docs/FiltersApi.md +2 -2
 - data/docs/GetRealTimeBreakdownResponse.md +10 -0
 - data/docs/GetRealTimeHistogramTimeseriesResponse.md +11 -0
 - data/docs/GetRealTimeHistogramTimeseriesResponseMeta.md +8 -0
 - data/docs/GetRealTimeTimeseriesResponse.md +10 -0
 - data/docs/Incident.md +28 -0
 - data/docs/IncidentBreakdown.md +10 -0
 - data/docs/IncidentNotification.md +10 -0
 - data/docs/IncidentNotificationRule.md +12 -0
 - data/docs/IncidentResponse.md +9 -0
 - data/docs/IncidentsApi.md +186 -0
 - data/docs/ListDimensionValuesResponse.md +10 -0
 - data/docs/ListDimensionsResponse.md +10 -0
 - data/docs/ListIncidentsResponse.md +10 -0
 - data/docs/ListRealTimeDimensionsResponse.md +10 -0
 - data/docs/ListRealTimeDimensionsResponseData.md +9 -0
 - data/docs/ListRealTimeMetricsResponse.md +10 -0
 - data/docs/ListRelatedIncidentsResponse.md +10 -0
 - data/docs/LiveStream.md +2 -1
 - data/docs/LiveStreamsApi.md +104 -0
 - data/docs/NotificationRule.md +10 -0
 - data/docs/RealTimeApi.md +280 -0
 - data/docs/RealTimeBreakdownValue.md +12 -0
 - data/docs/RealTimeHistogramTimeseriesBucket.md +9 -0
 - data/docs/RealTimeHistogramTimeseriesBucketValues.md +9 -0
 - data/docs/RealTimeHistogramTimeseriesDatapoint.md +14 -0
 - data/docs/RealTimeTimeseriesDatapoint.md +10 -0
 - data/docs/Upload.md +1 -0
 - data/docs/VideoView.md +16 -14
 - data/examples/data/exercise-dimensions.rb +29 -0
 - data/examples/data/exercise-errors.rb +1 -1
 - data/examples/data/exercise-incidents.rb +29 -0
 - data/examples/data/exercise-realtime.rb +60 -0
 - data/examples/video/exercise-live-streams.rb +22 -0
 - data/lib/mux_ruby.rb +30 -0
 - data/lib/mux_ruby/api/dimensions_api.rb +128 -0
 - data/lib/mux_ruby/api/filters_api.rb +4 -4
 - data/lib/mux_ruby/api/incidents_api.rb +217 -0
 - data/lib/mux_ruby/api/live_streams_api.rb +106 -0
 - data/lib/mux_ruby/api/real_time_api.rb +311 -0
 - data/lib/mux_ruby/api_client.rb +1 -1
 - data/lib/mux_ruby/configuration.rb +1 -4
 - data/lib/mux_ruby/models/asset.rb +46 -13
 - data/lib/mux_ruby/models/asset_non_standard_input_reasons.rb +335 -0
 - data/lib/mux_ruby/models/asset_recording_times.rb +195 -0
 - data/lib/mux_ruby/models/asset_static_renditions_files.rb +4 -4
 - data/lib/mux_ruby/models/create_asset_request.rb +13 -13
 - data/lib/mux_ruby/models/create_live_stream_request.rb +24 -4
 - data/lib/mux_ruby/models/create_upload_request.rb +13 -4
 - data/lib/mux_ruby/models/dimension_value.rb +193 -0
 - data/lib/mux_ruby/models/disable_live_stream_response.rb +184 -0
 - data/lib/mux_ruby/models/enable_live_stream_response.rb +184 -0
 - data/lib/mux_ruby/models/get_real_time_breakdown_response.rb +206 -0
 - data/lib/mux_ruby/models/get_real_time_histogram_timeseries_response.rb +215 -0
 - data/lib/mux_ruby/models/get_real_time_histogram_timeseries_response_meta.rb +186 -0
 - data/lib/mux_ruby/models/get_real_time_timeseries_response.rb +206 -0
 - data/lib/mux_ruby/models/incident.rb +370 -0
 - data/lib/mux_ruby/models/incident_breakdown.rb +202 -0
 - data/lib/mux_ruby/models/incident_notification.rb +202 -0
 - data/lib/mux_ruby/models/incident_notification_rule.rb +222 -0
 - data/lib/mux_ruby/models/incident_response.rb +195 -0
 - data/lib/mux_ruby/models/input_settings_overlay_settings.rb +46 -0
 - data/lib/mux_ruby/models/list_dimension_values_response.rb +206 -0
 - data/lib/mux_ruby/models/list_dimensions_response.rb +204 -0
 - data/lib/mux_ruby/models/list_incidents_response.rb +206 -0
 - data/lib/mux_ruby/models/list_real_time_dimensions_response.rb +206 -0
 - data/lib/mux_ruby/models/list_real_time_dimensions_response_data.rb +193 -0
 - data/lib/mux_ruby/models/list_real_time_metrics_response.rb +206 -0
 - data/lib/mux_ruby/models/list_related_incidents_response.rb +206 -0
 - data/lib/mux_ruby/models/live_stream.rb +14 -5
 - data/lib/mux_ruby/models/notification_rule.rb +202 -0
 - data/lib/mux_ruby/models/real_time_breakdown_value.rb +220 -0
 - data/lib/mux_ruby/models/real_time_histogram_timeseries_bucket.rb +193 -0
 - data/lib/mux_ruby/models/real_time_histogram_timeseries_bucket_values.rb +193 -0
 - data/lib/mux_ruby/models/real_time_histogram_timeseries_datapoint.rb +240 -0
 - data/lib/mux_ruby/models/real_time_timeseries_datapoint.rb +202 -0
 - data/lib/mux_ruby/models/upload.rb +13 -4
 - data/lib/mux_ruby/models/video_view.rb +36 -18
 - data/lib/mux_ruby/version.rb +1 -1
 - data/spec/api/dimensions_api_spec.rb +55 -0
 - data/spec/api/filters_api_spec.rb +2 -2
 - data/spec/api/incidents_api_spec.rb +73 -0
 - data/spec/api/live_streams_api_spec.rb +24 -0
 - data/spec/api/real_time_api_spec.rb +93 -0
 - data/spec/models/asset_non_standard_input_reasons_spec.rb +98 -0
 - data/spec/models/asset_recording_times_spec.rb +40 -0
 - data/spec/models/asset_spec.rb +22 -6
 - data/spec/models/asset_static_renditions_files_spec.rb +2 -2
 - data/spec/models/create_asset_request_spec.rb +6 -6
 - data/spec/models/create_live_stream_request_spec.rb +12 -0
 - data/spec/models/create_upload_request_spec.rb +6 -0
 - data/spec/models/dimension_value_spec.rb +40 -0
 - data/spec/models/disable_live_stream_response_spec.rb +34 -0
 - data/spec/models/enable_live_stream_response_spec.rb +34 -0
 - data/spec/models/get_real_time_breakdown_response_spec.rb +46 -0
 - data/spec/models/get_real_time_histogram_timeseries_response_meta_spec.rb +34 -0
 - data/spec/models/get_real_time_histogram_timeseries_response_spec.rb +52 -0
 - data/spec/models/get_real_time_timeseries_response_spec.rb +46 -0
 - data/spec/models/incident_breakdown_spec.rb +46 -0
 - data/spec/models/incident_notification_rule_spec.rb +58 -0
 - data/spec/models/incident_notification_spec.rb +46 -0
 - data/spec/models/incident_response_spec.rb +40 -0
 - data/spec/models/incident_spec.rb +154 -0
 - data/spec/models/input_settings_overlay_settings_spec.rb +8 -0
 - data/spec/models/list_dimension_values_response_spec.rb +46 -0
 - data/spec/models/list_dimensions_response_spec.rb +46 -0
 - data/spec/models/list_incidents_response_spec.rb +46 -0
 - data/spec/models/list_real_time_dimensions_response_data_spec.rb +40 -0
 - data/spec/models/list_real_time_dimensions_response_spec.rb +46 -0
 - data/spec/models/list_real_time_metrics_response_spec.rb +46 -0
 - data/spec/models/list_related_incidents_response_spec.rb +46 -0
 - data/spec/models/live_stream_spec.rb +6 -0
 - data/spec/models/notification_rule_spec.rb +46 -0
 - data/spec/models/real_time_breakdown_value_spec.rb +58 -0
 - data/spec/models/real_time_histogram_timeseries_bucket_spec.rb +40 -0
 - data/spec/models/real_time_histogram_timeseries_bucket_values_spec.rb +40 -0
 - data/spec/models/real_time_histogram_timeseries_datapoint_spec.rb +70 -0
 - data/spec/models/real_time_timeseries_datapoint_spec.rb +46 -0
 - data/spec/models/upload_spec.rb +6 -0
 - data/spec/models/video_view_spec.rb +12 -0
 - data/test.sh +28 -0
 - metadata +181 -58
 
| 
         @@ -28,6 +28,10 @@ describe 'InputSettingsOverlaySettings' do 
     | 
|
| 
       28 
28 
     | 
    
         
             
              describe 'test attribute "vertical_align"' do
         
     | 
| 
       29 
29 
     | 
    
         
             
                it 'should work' do
         
     | 
| 
       30 
30 
     | 
    
         
             
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                  # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["top", "middle", "bottom"])
         
     | 
| 
      
 32 
     | 
    
         
            +
                  # validator.allowable_values.each do |value|
         
     | 
| 
      
 33 
     | 
    
         
            +
                  #   expect { @instance.vertical_align = value }.not_to raise_error
         
     | 
| 
      
 34 
     | 
    
         
            +
                  # end
         
     | 
| 
       31 
35 
     | 
    
         
             
                end
         
     | 
| 
       32 
36 
     | 
    
         
             
              end
         
     | 
| 
       33 
37 
     | 
    
         | 
| 
         @@ -40,6 +44,10 @@ describe 'InputSettingsOverlaySettings' do 
     | 
|
| 
       40 
44 
     | 
    
         
             
              describe 'test attribute "horizontal_align"' do
         
     | 
| 
       41 
45 
     | 
    
         
             
                it 'should work' do
         
     | 
| 
       42 
46 
     | 
    
         
             
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 47 
     | 
    
         
            +
                  # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["left", "center", "right"])
         
     | 
| 
      
 48 
     | 
    
         
            +
                  # validator.allowable_values.each do |value|
         
     | 
| 
      
 49 
     | 
    
         
            +
                  #   expect { @instance.horizontal_align = value }.not_to raise_error
         
     | 
| 
      
 50 
     | 
    
         
            +
                  # end
         
     | 
| 
       43 
51 
     | 
    
         
             
                end
         
     | 
| 
       44 
52 
     | 
    
         
             
              end
         
     | 
| 
       45 
53 
     | 
    
         | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListDimensionValuesResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListDimensionValuesResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListDimensionValuesResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListDimensionValuesResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListDimensionValuesResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListDimensionValuesResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListDimensionsResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListDimensionsResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListDimensionsResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListDimensionsResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListDimensionsResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListDimensionsResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListIncidentsResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListIncidentsResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListIncidentsResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListIncidentsResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListIncidentsResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListIncidentsResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListRealTimeDimensionsResponseData
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListRealTimeDimensionsResponseData' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListRealTimeDimensionsResponseData.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListRealTimeDimensionsResponseData' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListRealTimeDimensionsResponseData' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListRealTimeDimensionsResponseData)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "name"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "display_name"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListRealTimeDimensionsResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListRealTimeDimensionsResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListRealTimeDimensionsResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListRealTimeDimensionsResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListRealTimeDimensionsResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListRealTimeDimensionsResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListRealTimeMetricsResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListRealTimeMetricsResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListRealTimeMetricsResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListRealTimeMetricsResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListRealTimeMetricsResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListRealTimeMetricsResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::ListRelatedIncidentsResponse
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'ListRelatedIncidentsResponse' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::ListRelatedIncidentsResponse.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of ListRelatedIncidentsResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of ListRelatedIncidentsResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::ListRelatedIncidentsResponse)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "data"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "total_row_count"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "timeframe"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::NotificationRule
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'NotificationRule' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::NotificationRule.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of NotificationRule' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of NotificationRule' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::NotificationRule)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "value"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "name"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "id"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,58 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Mux Ruby - Copyright 2019 Mux Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # NOTE: This file is auto generated. Do not edit this file manually.
         
     | 
| 
      
 4 
     | 
    
         
            +
            =end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            # Unit tests for MuxRuby::RealTimeBreakdownValue
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 12 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 13 
     | 
    
         
            +
            describe 'RealTimeBreakdownValue' do
         
     | 
| 
      
 14 
     | 
    
         
            +
              before do
         
     | 
| 
      
 15 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 16 
     | 
    
         
            +
                @instance = MuxRuby::RealTimeBreakdownValue.new
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              after do
         
     | 
| 
      
 20 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of RealTimeBreakdownValue' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of RealTimeBreakdownValue' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(MuxRuby::RealTimeBreakdownValue)
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
              describe 'test attribute "value"' do
         
     | 
| 
      
 29 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              describe 'test attribute "negative_impact"' do
         
     | 
| 
      
 35 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              describe 'test attribute "metric_value"' do
         
     | 
| 
      
 41 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
              describe 'test attribute "display_value"' do
         
     | 
| 
      
 47 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 48 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 49 
     | 
    
         
            +
                end
         
     | 
| 
      
 50 
     | 
    
         
            +
              end
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
              describe 'test attribute "concurent_viewers"' do
         
     | 
| 
      
 53 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 54 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 55 
     | 
    
         
            +
                end
         
     | 
| 
      
 56 
     | 
    
         
            +
              end
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            end
         
     |