bombbomb 2.0.25797 → 2.0.25798

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +7 -0
  3. data/README.md +68 -33
  4. data/Rakefile +8 -3
  5. data/bombbomb.gemspec +8 -17
  6. data/docs/AccountsApi.md +164 -5
  7. data/docs/AutomationsApi.md +52 -0
  8. data/docs/ClientGroupAssetMetaData.md +11 -0
  9. data/docs/ContactsApi.md +9 -6
  10. data/docs/EmailsApi.md +220 -0
  11. data/docs/FormsApi.md +60 -0
  12. data/docs/InlineResponse200.md +1 -1
  13. data/docs/IntegrationsApi.md +223 -0
  14. data/docs/JerichoConfiguration.md +2 -0
  15. data/docs/PromptMonthlyPerformance.md +11 -0
  16. data/docs/PromptOverview.md +11 -0
  17. data/docs/PromptSocialPrompt.md +20 -0
  18. data/docs/PromptsApi.md +230 -3
  19. data/docs/SocialsApi.md +167 -2
  20. data/docs/TeamsApi.md +300 -16
  21. data/docs/UsersApi.md +100 -0
  22. data/docs/VideoEmailPrompt.md +15 -15
  23. data/git_push.sh +1 -13
  24. data/lib/bombbomb.rb +8 -14
  25. data/lib/bombbomb/api/accounts_api.rb +189 -51
  26. data/lib/bombbomb/api/automations_api.rb +71 -30
  27. data/lib/bombbomb/api/contacts_api.rb +58 -86
  28. data/lib/bombbomb/api/curriculum_api.rb +8 -27
  29. data/lib/bombbomb/api/emails_api.rb +262 -66
  30. data/lib/bombbomb/api/files_api.rb +32 -53
  31. data/lib/bombbomb/api/forms_api.rb +77 -0
  32. data/lib/bombbomb/api/integrations_api.rb +238 -20
  33. data/lib/bombbomb/api/lists_api.rb +32 -53
  34. data/lib/bombbomb/api/orders_api.rb +8 -21
  35. data/lib/bombbomb/api/prompts_api.rb +347 -112
  36. data/lib/bombbomb/api/socials_api.rb +242 -87
  37. data/lib/bombbomb/api/teams_api.rb +485 -193
  38. data/lib/bombbomb/api/users_api.rb +119 -0
  39. data/lib/bombbomb/api/utilities_api.rb +23 -44
  40. data/lib/bombbomb/api/videos_api.rb +38 -55
  41. data/lib/bombbomb/api/webhooks_api.rb +23 -50
  42. data/lib/bombbomb/api_client.rb +55 -45
  43. data/lib/bombbomb/api_error.rb +9 -18
  44. data/lib/bombbomb/configuration.rb +8 -13
  45. data/lib/bombbomb/models/bb_web_hook.rb +6 -17
  46. data/lib/bombbomb/models/client_group_asset_meta_data.rb +215 -0
  47. data/lib/bombbomb/models/curriculum.rb +6 -17
  48. data/lib/bombbomb/models/curriculum_user_progress.rb +6 -17
  49. data/lib/bombbomb/models/curriculum_with_progress.rb +6 -17
  50. data/lib/bombbomb/models/hosted_doc.rb +6 -17
  51. data/lib/bombbomb/models/inline_response_200.rb +7 -18
  52. data/lib/bombbomb/models/inline_response_200_items.rb +1 -1
  53. data/lib/bombbomb/models/jericho_configuration.rb +34 -21
  54. data/lib/bombbomb/models/jericho_performance.rb +6 -17
  55. data/lib/bombbomb/models/o_auth_client.rb +6 -17
  56. data/lib/bombbomb/models/prompt_bot.rb +6 -17
  57. data/lib/bombbomb/models/prompt_monthly_performance.rb +219 -0
  58. data/lib/bombbomb/models/prompt_overview.rb +219 -0
  59. data/lib/bombbomb/models/prompt_social_prompt.rb +311 -0
  60. data/lib/bombbomb/models/sign_upload_request.rb +6 -17
  61. data/lib/bombbomb/models/sign_upload_response.rb +6 -17
  62. data/lib/bombbomb/models/string.rb +6 -17
  63. data/lib/bombbomb/models/team_public_representation.rb +6 -17
  64. data/lib/bombbomb/models/video_email_prompt.rb +128 -144
  65. data/lib/bombbomb/models/video_encoding_status_response.rb +6 -17
  66. data/lib/bombbomb/models/video_public_representation.rb +6 -17
  67. data/lib/bombbomb/models/video_recorder_method_response.rb +6 -17
  68. data/lib/bombbomb/version.rb +3 -14
  69. data/spec/api/forms_api_spec.rb +58 -0
  70. data/spec/api/users_api_spec.rb +57 -0
  71. data/spec/models/{inline_response_200_items_spec.rb → client_group_asset_meta_data_spec.rb} +8 -19
  72. data/spec/models/prompt_monthly_performance_spec.rb +60 -0
  73. data/spec/models/prompt_overview_spec.rb +60 -0
  74. data/spec/models/{prompt_bot_bot_spec.rb → prompt_social_prompt_spec.rb} +27 -15
  75. metadata +40 -20
@@ -3,21 +3,10 @@
3
3
 
4
4
  #We make it easy to build relationships using simple videos.
5
5
 
6
- OpenAPI spec version: 2.0.25797
6
+ OpenAPI spec version: 2.0.831
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
@@ -77,7 +66,7 @@ module BombBomb
77
66
  end
78
67
 
79
68
  # Show invalid properties with the reasons. Usually used together with valid?
80
- # @return Array for valid properies with the reasons
69
+ # @return Array for valid properties with the reasons
81
70
  def list_invalid_properties
82
71
  invalid_properties = Array.new
83
72
  return invalid_properties
@@ -117,7 +106,7 @@ module BombBomb
117
106
  def build_from_hash(attributes)
118
107
  return nil unless attributes.is_a?(Hash)
119
108
  self.class.swagger_types.each_pair do |key, type|
120
- if type =~ /^Array<(.*)>/i
109
+ if type =~ /\AArray<(.*)>/i
121
110
  # check to ensure the input is an array given that the the attribute
122
111
  # is documented as an array but the input is not
123
112
  if attributes[self.class.attribute_map[key]].is_a?(Array)
@@ -148,7 +137,7 @@ module BombBomb
148
137
  when :Float
149
138
  value.to_f
150
139
  when :BOOLEAN
151
- if value.to_s =~ /^(true|t|yes|y|1)$/i
140
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
152
141
  true
153
142
  else
154
143
  false
@@ -159,7 +148,7 @@ module BombBomb
159
148
  when /\AArray<(?<inner_type>.+)>\z/
160
149
  inner_type = Regexp.last_match[:inner_type]
161
150
  value.map { |v| _deserialize(inner_type, v) }
162
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
151
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
163
152
  k_type = Regexp.last_match[:k_type]
164
153
  v_type = Regexp.last_match[:v_type]
165
154
  {}.tap do |hash|
@@ -3,21 +3,10 @@
3
3
 
4
4
  #We make it easy to build relationships using simple videos.
5
5
 
6
- OpenAPI spec version: 2.0.25797
6
+ OpenAPI spec version: 2.0.831
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
@@ -151,7 +140,7 @@ module BombBomb
151
140
  end
152
141
 
153
142
  # Show invalid properties with the reasons. Usually used together with valid?
154
- # @return Array for valid properies with the reasons
143
+ # @return Array for valid properties with the reasons
155
144
  def list_invalid_properties
156
145
  invalid_properties = Array.new
157
146
  return invalid_properties
@@ -199,7 +188,7 @@ module BombBomb
199
188
  def build_from_hash(attributes)
200
189
  return nil unless attributes.is_a?(Hash)
201
190
  self.class.swagger_types.each_pair do |key, type|
202
- if type =~ /^Array<(.*)>/i
191
+ if type =~ /\AArray<(.*)>/i
203
192
  # check to ensure the input is an array given that the the attribute
204
193
  # is documented as an array but the input is not
205
194
  if attributes[self.class.attribute_map[key]].is_a?(Array)
@@ -230,7 +219,7 @@ module BombBomb
230
219
  when :Float
231
220
  value.to_f
232
221
  when :BOOLEAN
233
- if value.to_s =~ /^(true|t|yes|y|1)$/i
222
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
234
223
  true
235
224
  else
236
225
  false
@@ -241,7 +230,7 @@ module BombBomb
241
230
  when /\AArray<(?<inner_type>.+)>\z/
242
231
  inner_type = Regexp.last_match[:inner_type]
243
232
  value.map { |v| _deserialize(inner_type, v) }
244
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
233
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
245
234
  k_type = Regexp.last_match[:k_type]
246
235
  v_type = Regexp.last_match[:v_type]
247
236
  {}.tap do |hash|
@@ -3,21 +3,10 @@
3
3
 
4
4
  #We make it easy to build relationships using simple videos.
5
5
 
6
- OpenAPI spec version: 2.0.25797
6
+ OpenAPI spec version: 2.0.831
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
@@ -122,7 +111,7 @@ module BombBomb
122
111
  end
123
112
 
124
113
  # Show invalid properties with the reasons. Usually used together with valid?
125
- # @return Array for valid properies with the reasons
114
+ # @return Array for valid properties with the reasons
126
115
  def list_invalid_properties
127
116
  invalid_properties = Array.new
128
117
  return invalid_properties
@@ -167,7 +156,7 @@ module BombBomb
167
156
  def build_from_hash(attributes)
168
157
  return nil unless attributes.is_a?(Hash)
169
158
  self.class.swagger_types.each_pair do |key, type|
170
- if type =~ /^Array<(.*)>/i
159
+ if type =~ /\AArray<(.*)>/i
171
160
  # check to ensure the input is an array given that the the attribute
172
161
  # is documented as an array but the input is not
173
162
  if attributes[self.class.attribute_map[key]].is_a?(Array)
@@ -198,7 +187,7 @@ module BombBomb
198
187
  when :Float
199
188
  value.to_f
200
189
  when :BOOLEAN
201
- if value.to_s =~ /^(true|t|yes|y|1)$/i
190
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
202
191
  true
203
192
  else
204
193
  false
@@ -209,7 +198,7 @@ module BombBomb
209
198
  when /\AArray<(?<inner_type>.+)>\z/
210
199
  inner_type = Regexp.last_match[:inner_type]
211
200
  value.map { |v| _deserialize(inner_type, v) }
212
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
201
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
213
202
  k_type = Regexp.last_match[:k_type]
214
203
  v_type = Regexp.last_match[:v_type]
215
204
  {}.tap do |hash|
@@ -3,24 +3,13 @@
3
3
 
4
4
  #We make it easy to build relationships using simple videos.
5
5
 
6
- OpenAPI spec version: 2.0.25797
6
+ OpenAPI spec version: 2.0.831
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
24
13
  module BombBomb
25
- VERSION = "2.0.25797"
14
+ VERSION = "2.0.25798"
26
15
  end
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+
27
+ # Unit tests for BombBomb::FormsApi
28
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
29
+ # Please update as you see appropriate
30
+ describe 'FormsApi' do
31
+ before do
32
+ # run before each test
33
+ @instance = BombBomb::FormsApi.new
34
+ end
35
+
36
+ after do
37
+ # run after each test
38
+ end
39
+
40
+ describe 'test an instance of FormsApi' do
41
+ it 'should create an instact of FormsApi' do
42
+ expect(@instance).to be_instance_of(BombBomb::FormsApi)
43
+ end
44
+ end
45
+
46
+ # unit tests for get_form_tracking_as_csv
47
+ # Get csv
48
+ # Get form tracking as csv
49
+ # @param id Id of the form
50
+ # @param [Hash] opts the optional parameters
51
+ # @return [nil]
52
+ describe 'get_form_tracking_as_csv test' 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
@@ -0,0 +1,57 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.831
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for BombBomb::UsersApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'UsersApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = BombBomb::UsersApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of UsersApi' do
30
+ it 'should create an instance of UsersApi' do
31
+ expect(@instance).to be_instance_of(BombBomb::UsersApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for get_client_contact_information
36
+ # Get client contact information.
37
+ # Get the client contact information of the user&#39;s account.
38
+ # @param [Hash] opts the optional parameters
39
+ # @return [nil]
40
+ describe 'get_client_contact_information 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
+ # unit tests for get_user_profile_info
47
+ # Get user profile information.
48
+ # Get the users profile information.
49
+ # @param [Hash] opts the optional parameters
50
+ # @return [nil]
51
+ describe 'get_user_profile_info test' do
52
+ it "should work" do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
57
+ end
@@ -3,21 +3,10 @@
3
3
 
4
4
  #We make it easy to build relationships using simple videos.
5
5
 
6
- OpenAPI spec version: 2.0
6
+ OpenAPI spec version: 2.0.831
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
-
10
- Licensed under the Apache License, Version 2.0 (the "License");
11
- you may not use this file except in compliance with the License.
12
- You may obtain a copy of the License at
13
-
14
- http://www.apache.org/licenses/LICENSE-2.0
15
-
16
- Unless required by applicable law or agreed to in writing, software
17
- distributed under the License is distributed on an "AS IS" BASIS,
18
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- See the License for the specific language governing permissions and
20
- limitations under the License.
9
+ Swagger Codegen version: 2.3.1
21
10
 
22
11
  =end
23
12
 
@@ -25,22 +14,22 @@ require 'spec_helper'
25
14
  require 'json'
26
15
  require 'date'
27
16
 
28
- # Unit tests for BombBomb::InlineResponse200Items
17
+ # Unit tests for BombBomb::ClientGroupAssetMetaData
29
18
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
19
  # Please update as you see appropriate
31
- describe 'InlineResponse200Items' do
20
+ describe 'ClientGroupAssetMetaData' do
32
21
  before do
33
22
  # run before each test
34
- @instance = BombBomb::InlineResponse200Items.new
23
+ @instance = BombBomb::ClientGroupAssetMetaData.new
35
24
  end
36
25
 
37
26
  after do
38
27
  # run after each test
39
28
  end
40
29
 
41
- describe 'test an instance of InlineResponse200Items' do
42
- it 'should create an instact of InlineResponse200Items' do
43
- expect(@instance).to be_instance_of(BombBomb::InlineResponse200Items)
30
+ describe 'test an instance of ClientGroupAssetMetaData' do
31
+ it 'should create an instance of ClientGroupAssetMetaData' do
32
+ expect(@instance).to be_instance_of(BombBomb::ClientGroupAssetMetaData)
44
33
  end
45
34
  end
46
35
  describe 'test attribute "id"' do
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.831
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BombBomb::PromptMonthlyPerformance
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'PromptMonthlyPerformance' do
21
+ before do
22
+ # run before each test
23
+ @instance = BombBomb::PromptMonthlyPerformance.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PromptMonthlyPerformance' do
31
+ it 'should create an instance of PromptMonthlyPerformance' do
32
+ expect(@instance).to be_instance_of(BombBomb::PromptMonthlyPerformance)
33
+ end
34
+ end
35
+ describe 'test attribute "start_date"' 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 "end_date"' 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 "user_batch_lists_id_helper"' 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 "prompt_id_helper"' 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
+ end
60
+
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.831
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BombBomb::PromptOverview
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'PromptOverview' do
21
+ before do
22
+ # run before each test
23
+ @instance = BombBomb::PromptOverview.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PromptOverview' do
31
+ it 'should create an instance of PromptOverview' do
32
+ expect(@instance).to be_instance_of(BombBomb::PromptOverview)
33
+ end
34
+ end
35
+ describe 'test attribute "start_date"' 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 "end_date"' 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 "user_batch_lists_id_helper"' 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 "prompt_id_helper"' 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
+ end
60
+