radiomanager_client 1.0.99 → 1.0.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -5
  3. data/docs/BlockApi.md +13 -7
  4. data/docs/BroadcastApi.md +36 -24
  5. data/docs/BroadcastEPGDay.md +9 -0
  6. data/docs/BroadcastEPGRelations.md +13 -0
  7. data/docs/BroadcastEPGResult.md +40 -0
  8. data/docs/CampaignApi.md +9 -3
  9. data/docs/ContactApi.md +11 -5
  10. data/docs/EPGResults.md +10 -0
  11. data/docs/ExternalMessageApi.md +1 -1
  12. data/docs/GenreApi.md +7 -1
  13. data/docs/ItemApi.md +27 -25
  14. data/docs/ModelTypeApi.md +9 -3
  15. data/docs/PresenterApi.md +9 -3
  16. data/docs/PresenterEPGResult.md +18 -0
  17. data/docs/ProgramApi.md +17 -11
  18. data/docs/StationApi.md +57 -0
  19. data/docs/StationResult.md +8 -0
  20. data/docs/StationResultStation.md +33 -0
  21. data/docs/StoryApi.md +11 -5
  22. data/docs/StoryDataInput.md +1 -0
  23. data/docs/StringApi.md +1 -1
  24. data/docs/TagApi.md +7 -1
  25. data/docs/UserApi.md +8 -2
  26. data/docs/VisualSlideApi.md +1 -1
  27. data/lib/radiomanager_client/api/block_api.rb +29 -9
  28. data/lib/radiomanager_client/api/broadcast_api.rb +58 -29
  29. data/lib/radiomanager_client/api/campaign_api.rb +23 -3
  30. data/lib/radiomanager_client/api/contact_api.rb +25 -5
  31. data/lib/radiomanager_client/api/genre_api.rb +20 -0
  32. data/lib/radiomanager_client/api/item_api.rb +50 -39
  33. data/lib/radiomanager_client/api/model_type_api.rb +23 -3
  34. data/lib/radiomanager_client/api/presenter_api.rb +23 -3
  35. data/lib/radiomanager_client/api/program_api.rb +34 -14
  36. data/lib/radiomanager_client/api/station_api.rb +72 -0
  37. data/lib/radiomanager_client/api/story_api.rb +25 -5
  38. data/lib/radiomanager_client/api/tag_api.rb +20 -0
  39. data/lib/radiomanager_client/api/user_api.rb +20 -0
  40. data/lib/radiomanager_client/configuration.rb +1 -1
  41. data/lib/radiomanager_client/models/broadcast_epg_day.rb +204 -0
  42. data/lib/radiomanager_client/models/broadcast_epg_relations.rb +235 -0
  43. data/lib/radiomanager_client/models/broadcast_epg_result.rb +547 -0
  44. data/lib/radiomanager_client/models/epg_results.rb +223 -0
  45. data/lib/radiomanager_client/models/presenter_epg_result.rb +305 -0
  46. data/lib/radiomanager_client/models/station_result.rb +188 -0
  47. data/lib/radiomanager_client/models/station_result_station.rb +413 -0
  48. data/lib/radiomanager_client/models/story_data_input.rb +15 -4
  49. data/lib/radiomanager_client.rb +9 -3
  50. data/radiomanager_client.gemspec +1 -1
  51. data/spec/api/station_api_spec.rb +46 -0
  52. data/spec/configuration_spec.rb +3 -3
  53. data/spec/models/broadcast_epg_day_spec.rb +48 -0
  54. data/spec/models/broadcast_epg_relations_spec.rb +72 -0
  55. data/spec/models/broadcast_epg_result_spec.rb +238 -0
  56. data/spec/models/epg_results_spec.rb +54 -0
  57. data/spec/models/item_data_input_spec.rb +1 -1
  58. data/spec/models/item_input_only_spec.rb +1 -1
  59. data/spec/models/presenter_epg_result_spec.rb +102 -0
  60. data/spec/models/station_result_spec.rb +42 -0
  61. data/spec/models/station_result_station_spec.rb +186 -0
  62. metadata +34 -2
@@ -25,6 +25,8 @@ module RadioManagerClient
25
25
 
26
26
  attr_accessor :description
27
27
 
28
+ attr_accessor :tags
29
+
28
30
 
29
31
  # Attribute mapping from ruby-style variable name to JSON key.
30
32
  def self.attribute_map
@@ -33,7 +35,8 @@ module RadioManagerClient
33
35
  :'recommended' => :'recommended',
34
36
  :'field_values' => :'field_values',
35
37
  :'name' => :'name',
36
- :'description' => :'description'
38
+ :'description' => :'description',
39
+ :'tags' => :'tags'
37
40
  }
38
41
  end
39
42
 
@@ -44,7 +47,8 @@ module RadioManagerClient
44
47
  :'recommended' => :'BOOLEAN',
45
48
  :'field_values' => :'Object',
46
49
  :'name' => :'String',
47
- :'description' => :'String'
50
+ :'description' => :'String',
51
+ :'tags' => :'Array<Integer>'
48
52
  }
49
53
  end
50
54
 
@@ -76,6 +80,12 @@ module RadioManagerClient
76
80
  self.description = attributes[:'description']
77
81
  end
78
82
 
83
+ if attributes.has_key?(:'tags')
84
+ if (value = attributes[:'tags']).is_a?(Array)
85
+ self.tags = value
86
+ end
87
+ end
88
+
79
89
  end
80
90
 
81
91
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -110,7 +120,8 @@ module RadioManagerClient
110
120
  recommended == o.recommended &&
111
121
  field_values == o.field_values &&
112
122
  name == o.name &&
113
- description == o.description
123
+ description == o.description &&
124
+ tags == o.tags
114
125
  end
115
126
 
116
127
  # @see the `==` method
@@ -122,7 +133,7 @@ module RadioManagerClient
122
133
  # Calculates hash code according to all attributes.
123
134
  # @return [Fixnum] Hash code
124
135
  def hash
125
- [model_type_id, recommended, field_values, name, description].hash
136
+ [model_type_id, recommended, field_values, name, description, tags].hash
126
137
  end
127
138
 
128
139
  # Builds the object from hash
@@ -26,6 +26,8 @@ require 'radiomanager_client/models/block_relations_items_params'
26
26
  require 'radiomanager_client/models/block_relations_program'
27
27
  require 'radiomanager_client/models/block_results'
28
28
  require 'radiomanager_client/models/broadcast'
29
+ require 'radiomanager_client/models/broadcast_epg_day'
30
+ require 'radiomanager_client/models/broadcast_epg_relations'
29
31
  require 'radiomanager_client/models/broadcast_field_values'
30
32
  require 'radiomanager_client/models/broadcast_input_only'
31
33
  require 'radiomanager_client/models/broadcast_output_only'
@@ -53,8 +55,7 @@ require 'radiomanager_client/models/contact_relations_tags_params'
53
55
  require 'radiomanager_client/models/contact_results'
54
56
  require 'radiomanager_client/models/data'
55
57
  require 'radiomanager_client/models/data_1'
56
- require 'radiomanager_client/models/epg_broadcast'
57
- require 'radiomanager_client/models/external_message_queue_data'
58
+ require 'radiomanager_client/models/epg_results'
58
59
  require 'radiomanager_client/models/forbidden'
59
60
  require 'radiomanager_client/models/genre'
60
61
  require 'radiomanager_client/models/genre_output_only'
@@ -115,7 +116,10 @@ require 'radiomanager_client/models/program_relations_tags'
115
116
  require 'radiomanager_client/models/program_results'
116
117
  require 'radiomanager_client/models/read_only'
117
118
  require 'radiomanager_client/models/relations_placeholder'
119
+ require 'radiomanager_client/models/station_result'
120
+ require 'radiomanager_client/models/station_result_station'
118
121
  require 'radiomanager_client/models/story'
122
+ require 'radiomanager_client/models/story_input_only'
119
123
  require 'radiomanager_client/models/story_output_only'
120
124
  require 'radiomanager_client/models/story_relations'
121
125
  require 'radiomanager_client/models/story_relations_items'
@@ -141,6 +145,7 @@ require 'radiomanager_client/models/user_results'
141
145
  require 'radiomanager_client/models/visual_result'
142
146
  require 'radiomanager_client/models/block_result'
143
147
  require 'radiomanager_client/models/broadcast_data_input'
148
+ require 'radiomanager_client/models/broadcast_epg_result'
144
149
  require 'radiomanager_client/models/broadcast_result'
145
150
  require 'radiomanager_client/models/campaign_data_input'
146
151
  require 'radiomanager_client/models/campaign_result'
@@ -151,6 +156,7 @@ require 'radiomanager_client/models/item_data_input'
151
156
  require 'radiomanager_client/models/item_result'
152
157
  require 'radiomanager_client/models/model_type_result'
153
158
  require 'radiomanager_client/models/presenter_data_input'
159
+ require 'radiomanager_client/models/presenter_epg_result'
154
160
  require 'radiomanager_client/models/presenter_result'
155
161
  require 'radiomanager_client/models/program_data_input'
156
162
  require 'radiomanager_client/models/program_result'
@@ -164,12 +170,12 @@ require 'radiomanager_client/api/block_api'
164
170
  require 'radiomanager_client/api/broadcast_api'
165
171
  require 'radiomanager_client/api/campaign_api'
166
172
  require 'radiomanager_client/api/contact_api'
167
- require 'radiomanager_client/api/external_message_api'
168
173
  require 'radiomanager_client/api/genre_api'
169
174
  require 'radiomanager_client/api/item_api'
170
175
  require 'radiomanager_client/api/model_type_api'
171
176
  require 'radiomanager_client/api/presenter_api'
172
177
  require 'radiomanager_client/api/program_api'
178
+ require 'radiomanager_client/api/station_api'
173
179
  require 'radiomanager_client/api/story_api'
174
180
  require 'radiomanager_client/api/string_api'
175
181
  require 'radiomanager_client/api/tag_api'
@@ -17,7 +17,7 @@ require "radiomanager_client/version"
17
17
 
18
18
  Gem::Specification.new do |s|
19
19
  s.name = "radiomanager_client"
20
- s.version = "1.0.99"
20
+ s.version = "1.0.100"
21
21
  s.platform = Gem::Platform::RUBY
22
22
  s.authors = ["Pluxbox"]
23
23
  s.email = ["support@pluxbox.com"]
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #RadioManager
3
+
4
+ #RadioManager
5
+
6
+ OpenAPI spec version: 2.0
7
+ Contact: support@pluxbox.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for RadioManagerClient::StationApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'StationApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = RadioManagerClient::StationApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of StationApi' do
30
+ it 'should create an instance of StationApi' do
31
+ expect(@instance).to be_instance_of(RadioManagerClient::StationApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for get_station
36
+ # Get own station only
37
+ # Get own station only
38
+ # @param [Hash] opts the optional parameters
39
+ # @return [StationResult]
40
+ describe 'get_station test' 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
@@ -18,7 +18,7 @@ describe RadioManagerClient::Configuration do
18
18
  before(:each) do
19
19
  # uncomment below to setup host and base_path
20
20
  #require 'URI'
21
- #uri = URI.parse("https://staging.pluxbox.com/api/v2")
21
+ #uri = URI.parse("http://radiomanager.pb/api/v2")
22
22
  #RadioManagerClient.configure do |c|
23
23
  # c.host = uri.host
24
24
  # c.base_path = uri.path
@@ -28,14 +28,14 @@ describe RadioManagerClient::Configuration do
28
28
  describe '#base_url' do
29
29
  it 'should have the default value' do
30
30
  # uncomment below to test default value of the base path
31
- #expect(config.base_url).to eq("https://staging.pluxbox.com/api/v2")
31
+ #expect(config.base_url).to eq("http://radiomanager.pb/api/v2")
32
32
  end
33
33
 
34
34
  it 'should remove trailing slashes' do
35
35
  [nil, '', '/', '//'].each do |base_path|
36
36
  config.base_path = base_path
37
37
  # uncomment below to test trailing slashes
38
- #expect(config.base_url).to eq("https://staging.pluxbox.com/api/v2")
38
+ #expect(config.base_url).to eq("http://radiomanager.pb/api/v2")
39
39
  end
40
40
  end
41
41
  end
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #RadioManager
3
+
4
+ #RadioManager
5
+
6
+ OpenAPI spec version: 2.0
7
+ Contact: support@pluxbox.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for RadioManagerClient::BroadcastEPGDay
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'BroadcastEPGDay' do
21
+ before do
22
+ # run before each test
23
+ @instance = RadioManagerClient::BroadcastEPGDay.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of BroadcastEPGDay' do
31
+ it 'should create an instance of BroadcastEPGDay' do
32
+ expect(@instance).to be_instance_of(RadioManagerClient::BroadcastEPGDay)
33
+ end
34
+ end
35
+ describe 'test attribute "day"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "results"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
48
+
@@ -0,0 +1,72 @@
1
+ =begin
2
+ #RadioManager
3
+
4
+ #RadioManager
5
+
6
+ OpenAPI spec version: 2.0
7
+ Contact: support@pluxbox.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for RadioManagerClient::BroadcastEPGRelations
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'BroadcastEPGRelations' do
21
+ before do
22
+ # run before each test
23
+ @instance = RadioManagerClient::BroadcastEPGRelations.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of BroadcastEPGRelations' do
31
+ it 'should create an instance of BroadcastEPGRelations' do
32
+ expect(@instance).to be_instance_of(RadioManagerClient::BroadcastEPGRelations)
33
+ end
34
+ end
35
+ describe 'test attribute "items"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "blocks"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "program"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "tags"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "presenters"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "model_type"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ end
72
+
@@ -0,0 +1,238 @@
1
+ =begin
2
+ #RadioManager
3
+
4
+ #RadioManager
5
+
6
+ OpenAPI spec version: 2.0
7
+ Contact: support@pluxbox.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for RadioManagerClient::BroadcastEPGResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'BroadcastEPGResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = RadioManagerClient::BroadcastEPGResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of BroadcastEPGResult' do
31
+ it 'should create an instance of BroadcastEPGResult' do
32
+ expect(@instance).to be_instance_of(RadioManagerClient::BroadcastEPGResult)
33
+ end
34
+ end
35
+ describe 'test attribute "id"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "updated_at"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "created_at"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "deleted_at"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "_external_station_id"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "program_id"' 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 "model_type_id"' 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 "station_id"' 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 "field_values"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "title"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "start"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "stop"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ describe 'test attribute "genre_id"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
113
+ describe 'test attribute "description"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ describe 'test attribute "short_name"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
125
+ describe 'test attribute "medium_name"' do
126
+ it 'should work' do
127
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
+ end
129
+ end
130
+
131
+ describe 'test attribute "website"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
137
+ describe 'test attribute "email"' do
138
+ it 'should work' do
139
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ end
141
+ end
142
+
143
+ describe 'test attribute "recommended"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
149
+ describe 'test attribute "language"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ end
153
+ end
154
+
155
+ describe 'test attribute "published"' do
156
+ it 'should work' do
157
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
158
+ end
159
+ end
160
+
161
+ describe 'test attribute "repetition_uid"' do
162
+ it 'should work' do
163
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
164
+ end
165
+ end
166
+
167
+ describe 'test attribute "repetition_type"' do
168
+ it 'should work' do
169
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
170
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["1 week", "2 weeks", "4 weeks", "1 month"])
171
+ #validator.allowable_values.each do |value|
172
+ # expect { @instance.repetition_type = value }.not_to raise_error
173
+ #end
174
+ end
175
+ end
176
+
177
+ describe 'test attribute "repetition_end"' do
178
+ it 'should work' do
179
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
180
+ end
181
+ end
182
+
183
+ describe 'test attribute "repetition_start"' do
184
+ it 'should work' do
185
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
186
+ end
187
+ end
188
+
189
+ describe 'test attribute "repetition_days"' do
190
+ it 'should work' do
191
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
192
+ end
193
+ end
194
+
195
+ describe 'test attribute "pty_code_id"' 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 "items"' 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 "blocks"' 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 "program"' 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 "tags"' 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 "presenters"' 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 "model_type"' 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
+ end
238
+