bt_test 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/README.md +187 -0
- data/Rakefile +10 -0
- data/bt_test.gemspec +38 -0
- data/docs/CreateGoalRequest.md +18 -0
- data/docs/CreateProjectRequest.md +26 -0
- data/docs/CreateProjectsTagRequest.md +18 -0
- data/docs/CreateScaffoldingAbsolutelyAbstractCreativeConceptRequest.md +20 -0
- data/docs/CreateTeamRequest.md +20 -0
- data/docs/CreateWebhooksOutgoingEndpointRequest.md +22 -0
- data/docs/Goal.md +18 -0
- data/docs/GoalData.md +24 -0
- data/docs/GoalDataAttributes.md +24 -0
- data/docs/GoalDataRelationships.md +18 -0
- data/docs/Me.md +18 -0
- data/docs/MeData.md +24 -0
- data/docs/MeDataAttributes.md +38 -0
- data/docs/MeDataRelationships.md +20 -0
- data/docs/PlatformApi.md +2834 -0
- data/docs/Project.md +18 -0
- data/docs/ProjectData.md +24 -0
- data/docs/ProjectDataAttributes.md +24 -0
- data/docs/ProjectDataRelationships.md +26 -0
- data/docs/ProjectDataRelationshipsTags.md +18 -0
- data/docs/ProjectsTag.md +18 -0
- data/docs/ProjectsTagData.md +24 -0
- data/docs/ProjectsTagDataAttributes.md +22 -0
- data/docs/ProjectsTagDataRelationships.md +20 -0
- data/docs/ProjectsTagDataRelationshipsTeam.md +18 -0
- data/docs/ProjectsTagDataRelationshipsTeamData.md +20 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConcept.md +18 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptData.md +24 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataAttributes.md +28 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataRelationships.md +20 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThing.md +18 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingData.md +24 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingDataAttributes.md +46 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingDataRelationships.md +18 -0
- data/docs/Team.md +18 -0
- data/docs/TeamData.md +24 -0
- data/docs/TeamDataAttributes.md +28 -0
- data/docs/TeamDataRelationships.md +18 -0
- data/docs/UpdateScaffoldingCompletelyConcreteTangibleThingRequest.md +46 -0
- data/docs/WebhooksOutgoingDelivery.md +18 -0
- data/docs/WebhooksOutgoingDeliveryAttempt.md +18 -0
- data/docs/WebhooksOutgoingDeliveryAttemptData.md +24 -0
- data/docs/WebhooksOutgoingDeliveryAttemptDataAttributes.md +34 -0
- data/docs/WebhooksOutgoingDeliveryAttemptDataRelationships.md +18 -0
- data/docs/WebhooksOutgoingDeliveryData.md +24 -0
- data/docs/WebhooksOutgoingDeliveryDataAttributes.md +30 -0
- data/docs/WebhooksOutgoingDeliveryDataRelationships.md +18 -0
- data/docs/WebhooksOutgoingEndpoint.md +18 -0
- data/docs/WebhooksOutgoingEndpointData.md +24 -0
- data/docs/WebhooksOutgoingEndpointDataAttributes.md +28 -0
- data/docs/WebhooksOutgoingEndpointDataRelationships.md +18 -0
- data/git_push.sh +57 -0
- data/lib/bt_test/api/platform_api.rb +2523 -0
- data/lib/bt_test/api_client.rb +392 -0
- data/lib/bt_test/api_error.rb +57 -0
- data/lib/bt_test/configuration.rb +280 -0
- data/lib/bt_test/models/create_goal_request.rb +220 -0
- data/lib/bt_test/models/create_project_request.rb +262 -0
- data/lib/bt_test/models/create_projects_tag_request.rb +220 -0
- data/lib/bt_test/models/create_scaffolding_absolutely_abstract_creative_concept_request.rb +230 -0
- data/lib/bt_test/models/create_team_request.rb +230 -0
- data/lib/bt_test/models/create_webhooks_outgoing_endpoint_request.rb +242 -0
- data/lib/bt_test/models/goal.rb +220 -0
- data/lib/bt_test/models/goal_data.rb +246 -0
- data/lib/bt_test/models/goal_data_attributes.rb +246 -0
- data/lib/bt_test/models/goal_data_relationships.rb +219 -0
- data/lib/bt_test/models/me.rb +220 -0
- data/lib/bt_test/models/me_data.rb +246 -0
- data/lib/bt_test/models/me_data_attributes.rb +309 -0
- data/lib/bt_test/models/me_data_relationships.rb +228 -0
- data/lib/bt_test/models/project.rb +220 -0
- data/lib/bt_test/models/project_data.rb +246 -0
- data/lib/bt_test/models/project_data_attributes.rb +246 -0
- data/lib/bt_test/models/project_data_relationships.rb +255 -0
- data/lib/bt_test/models/project_data_relationships_tags.rb +221 -0
- data/lib/bt_test/models/projects_tag.rb +220 -0
- data/lib/bt_test/models/projects_tag_data.rb +246 -0
- data/lib/bt_test/models/projects_tag_data_attributes.rb +237 -0
- data/lib/bt_test/models/projects_tag_data_relationships.rb +228 -0
- data/lib/bt_test/models/projects_tag_data_relationships_team.rb +219 -0
- data/lib/bt_test/models/projects_tag_data_relationships_team_data.rb +228 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept.rb +220 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data.rb +246 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_attributes.rb +264 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_relationships.rb +228 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing.rb +220 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data.rb +246 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_attributes.rb +345 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_relationships.rb +219 -0
- data/lib/bt_test/models/team.rb +220 -0
- data/lib/bt_test/models/team_data.rb +246 -0
- data/lib/bt_test/models/team_data_attributes.rb +264 -0
- data/lib/bt_test/models/team_data_relationships.rb +219 -0
- data/lib/bt_test/models/update_scaffolding_completely_concrete_tangible_thing_request.rb +366 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_attributes.rb +291 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_relationships.rb +219 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data_attributes.rb +273 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data_relationships.rb +219 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data_attributes.rb +264 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data_relationships.rb +219 -0
- data/lib/bt_test/version.rb +15 -0
- data/lib/bt_test.rb +90 -0
- data/spec/api/platform_api_spec.rb +493 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/create_goal_request_spec.rb +34 -0
- data/spec/models/create_project_request_spec.rb +58 -0
- data/spec/models/create_projects_tag_request_spec.rb +34 -0
- data/spec/models/create_scaffolding_absolutely_abstract_creative_concept_request_spec.rb +40 -0
- data/spec/models/create_team_request_spec.rb +40 -0
- data/spec/models/create_webhooks_outgoing_endpoint_request_spec.rb +46 -0
- data/spec/models/goal_data_attributes_spec.rb +52 -0
- data/spec/models/goal_data_relationships_spec.rb +34 -0
- data/spec/models/goal_data_spec.rb +52 -0
- data/spec/models/goal_spec.rb +34 -0
- data/spec/models/me_data_attributes_spec.rb +94 -0
- data/spec/models/me_data_relationships_spec.rb +40 -0
- data/spec/models/me_data_spec.rb +52 -0
- data/spec/models/me_spec.rb +34 -0
- data/spec/models/project_data_attributes_spec.rb +52 -0
- data/spec/models/project_data_relationships_spec.rb +58 -0
- data/spec/models/project_data_relationships_tags_spec.rb +34 -0
- data/spec/models/project_data_spec.rb +52 -0
- data/spec/models/project_spec.rb +34 -0
- data/spec/models/projects_tag_data_attributes_spec.rb +46 -0
- data/spec/models/projects_tag_data_relationships_spec.rb +40 -0
- data/spec/models/projects_tag_data_relationships_team_data_spec.rb +40 -0
- data/spec/models/projects_tag_data_relationships_team_spec.rb +34 -0
- data/spec/models/projects_tag_data_spec.rb +52 -0
- data/spec/models/projects_tag_spec.rb +34 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_attributes_spec.rb +64 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_relationships_spec.rb +40 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_spec.rb +52 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_spec.rb +34 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_attributes_spec.rb +118 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_relationships_spec.rb +34 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_spec.rb +52 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_spec.rb +34 -0
- data/spec/models/team_data_attributes_spec.rb +64 -0
- data/spec/models/team_data_relationships_spec.rb +34 -0
- data/spec/models/team_data_spec.rb +52 -0
- data/spec/models/team_spec.rb +34 -0
- data/spec/models/update_scaffolding_completely_concrete_tangible_thing_request_spec.rb +118 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_attributes_spec.rb +82 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_data_attributes_spec.rb +70 -0
- data/spec/models/webhooks_outgoing_delivery_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_delivery_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_endpoint_data_attributes_spec.rb +64 -0
- data/spec/models/webhooks_outgoing_endpoint_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_endpoint_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_endpoint_spec.rb +34 -0
- data/spec/spec_helper.rb +111 -0
- metadata +303 -0
|
@@ -0,0 +1,493 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BT Test
|
|
3
|
+
|
|
4
|
+
#You can update this description in `config/locales/en/application.en.yml`.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.0.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
|
|
16
|
+
# Unit tests for BtTest::PlatformApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'PlatformApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = BtTest::PlatformApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of PlatformApi' do
|
|
30
|
+
it 'should create an instance of PlatformApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(BtTest::PlatformApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for create_goal
|
|
36
|
+
# Add a New Goal
|
|
37
|
+
# @param project_id Project ID
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @option opts [CreateGoalRequest] :create_goal_request
|
|
40
|
+
# @return [Goal]
|
|
41
|
+
describe 'create_goal test' 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
|
+
# unit tests for create_project
|
|
48
|
+
# Add a New Project
|
|
49
|
+
# @param team_id Team ID
|
|
50
|
+
# @param [Hash] opts the optional parameters
|
|
51
|
+
# @option opts [CreateProjectRequest] :create_project_request
|
|
52
|
+
# @return [Project]
|
|
53
|
+
describe 'create_project test' 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
|
+
# unit tests for create_projects_tag
|
|
60
|
+
# Add a New Tag
|
|
61
|
+
# @param team_id Team ID
|
|
62
|
+
# @param [Hash] opts the optional parameters
|
|
63
|
+
# @option opts [CreateProjectsTagRequest] :create_projects_tag_request
|
|
64
|
+
# @return [ProjectsTag]
|
|
65
|
+
describe 'create_projects_tag test' 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
|
+
# unit tests for create_scaffolding_absolutely_abstract_creative_concept
|
|
72
|
+
# Add a New Creative Concept
|
|
73
|
+
# @param team_id Team ID
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @option opts [CreateScaffoldingAbsolutelyAbstractCreativeConceptRequest] :create_scaffolding_absolutely_abstract_creative_concept_request
|
|
76
|
+
# @return [ScaffoldingAbsolutelyAbstractCreativeConcept]
|
|
77
|
+
describe 'create_scaffolding_absolutely_abstract_creative_concept test' 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
|
+
# unit tests for create_scaffolding_completely_concrete_tangible_thing
|
|
84
|
+
# Add a New Tangible Thing
|
|
85
|
+
# @param absolutely_abstract_creative_concept_id Creative Concept ID
|
|
86
|
+
# @param [Hash] opts the optional parameters
|
|
87
|
+
# @option opts [UpdateScaffoldingCompletelyConcreteTangibleThingRequest] :update_scaffolding_completely_concrete_tangible_thing_request
|
|
88
|
+
# @return [ScaffoldingCompletelyConcreteTangibleThing]
|
|
89
|
+
describe 'create_scaffolding_completely_concrete_tangible_thing test' 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
|
+
# unit tests for create_team
|
|
96
|
+
# Add a New Team
|
|
97
|
+
# @param [Hash] opts the optional parameters
|
|
98
|
+
# @option opts [CreateTeamRequest] :create_team_request
|
|
99
|
+
# @return [Team]
|
|
100
|
+
describe 'create_team test' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# unit tests for create_webhooks_outgoing_endpoint
|
|
107
|
+
# Add a New Endpoint
|
|
108
|
+
# @param team_id Team ID
|
|
109
|
+
# @param [Hash] opts the optional parameters
|
|
110
|
+
# @option opts [CreateWebhooksOutgoingEndpointRequest] :create_webhooks_outgoing_endpoint_request
|
|
111
|
+
# @return [WebhooksOutgoingEndpoint]
|
|
112
|
+
describe 'create_webhooks_outgoing_endpoint test' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# unit tests for delete_goal
|
|
119
|
+
# Delete a Goal
|
|
120
|
+
# @param id Goal ID
|
|
121
|
+
# @param [Hash] opts the optional parameters
|
|
122
|
+
# @return [nil]
|
|
123
|
+
describe 'delete_goal test' do
|
|
124
|
+
it 'should work' do
|
|
125
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# unit tests for delete_project
|
|
130
|
+
# Delete a Project
|
|
131
|
+
# @param id Project ID
|
|
132
|
+
# @param [Hash] opts the optional parameters
|
|
133
|
+
# @return [nil]
|
|
134
|
+
describe 'delete_project test' do
|
|
135
|
+
it 'should work' do
|
|
136
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# unit tests for delete_projects_tag
|
|
141
|
+
# Delete a Tag
|
|
142
|
+
# @param id Tag ID
|
|
143
|
+
# @param [Hash] opts the optional parameters
|
|
144
|
+
# @return [nil]
|
|
145
|
+
describe 'delete_projects_tag test' do
|
|
146
|
+
it 'should work' do
|
|
147
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# unit tests for delete_scaffolding_absolutely_abstract_creative_concept
|
|
152
|
+
# Delete a Creative Concept
|
|
153
|
+
# @param id Creative Concept ID
|
|
154
|
+
# @param [Hash] opts the optional parameters
|
|
155
|
+
# @return [nil]
|
|
156
|
+
describe 'delete_scaffolding_absolutely_abstract_creative_concept test' do
|
|
157
|
+
it 'should work' do
|
|
158
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# unit tests for delete_scaffolding_completely_concrete_tangible_thing
|
|
163
|
+
# Delete a Tangible Thing
|
|
164
|
+
# @param id Tangible Thing ID
|
|
165
|
+
# @param [Hash] opts the optional parameters
|
|
166
|
+
# @return [nil]
|
|
167
|
+
describe 'delete_scaffolding_completely_concrete_tangible_thing test' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# unit tests for delete_webhooks_outgoing_endpoint
|
|
174
|
+
# Delete a Endpoint
|
|
175
|
+
# @param id Endpoint ID
|
|
176
|
+
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @return [nil]
|
|
178
|
+
describe 'delete_webhooks_outgoing_endpoint test' do
|
|
179
|
+
it 'should work' do
|
|
180
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
# unit tests for get_goal
|
|
185
|
+
# Retrieve a Goal
|
|
186
|
+
# @param id Goal ID
|
|
187
|
+
# @param [Hash] opts the optional parameters
|
|
188
|
+
# @return [Goal]
|
|
189
|
+
describe 'get_goal test' 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
|
+
# unit tests for get_me
|
|
196
|
+
# Retrieve info about the current user
|
|
197
|
+
# @param [Hash] opts the optional parameters
|
|
198
|
+
# @return [Me]
|
|
199
|
+
describe 'get_me test' do
|
|
200
|
+
it 'should work' do
|
|
201
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
# unit tests for get_project
|
|
206
|
+
# Retrieve a Project
|
|
207
|
+
# @param id Project ID
|
|
208
|
+
# @param [Hash] opts the optional parameters
|
|
209
|
+
# @return [Project]
|
|
210
|
+
describe 'get_project test' do
|
|
211
|
+
it 'should work' do
|
|
212
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
213
|
+
end
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
# unit tests for get_projects_tag
|
|
217
|
+
# Retrieve a Tag
|
|
218
|
+
# @param id Tag ID
|
|
219
|
+
# @param [Hash] opts the optional parameters
|
|
220
|
+
# @return [ProjectsTag]
|
|
221
|
+
describe 'get_projects_tag test' do
|
|
222
|
+
it 'should work' do
|
|
223
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
224
|
+
end
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
# unit tests for get_scaffolding_absolutely_abstract_creative_concept
|
|
228
|
+
# Retrieve a Creative Concept
|
|
229
|
+
# @param id Creative Concept ID
|
|
230
|
+
# @param [Hash] opts the optional parameters
|
|
231
|
+
# @return [ScaffoldingAbsolutelyAbstractCreativeConcept]
|
|
232
|
+
describe 'get_scaffolding_absolutely_abstract_creative_concept test' do
|
|
233
|
+
it 'should work' do
|
|
234
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
235
|
+
end
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
# unit tests for get_scaffolding_completely_concrete_tangible_thing
|
|
239
|
+
# Retrieve a Tangible Thing
|
|
240
|
+
# @param id Tangible Thing ID
|
|
241
|
+
# @param [Hash] opts the optional parameters
|
|
242
|
+
# @return [ScaffoldingCompletelyConcreteTangibleThing]
|
|
243
|
+
describe 'get_scaffolding_completely_concrete_tangible_thing test' do
|
|
244
|
+
it 'should work' do
|
|
245
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
246
|
+
end
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# unit tests for get_team
|
|
250
|
+
# Retrieve a Team
|
|
251
|
+
# @param id Team ID
|
|
252
|
+
# @param [Hash] opts the optional parameters
|
|
253
|
+
# @return [Team]
|
|
254
|
+
describe 'get_team test' do
|
|
255
|
+
it 'should work' do
|
|
256
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
257
|
+
end
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
# unit tests for get_webhooks_outgoing_delivery
|
|
261
|
+
# Retrieve a Delivery
|
|
262
|
+
# @param id Delivery ID
|
|
263
|
+
# @param [Hash] opts the optional parameters
|
|
264
|
+
# @return [WebhooksOutgoingDelivery]
|
|
265
|
+
describe 'get_webhooks_outgoing_delivery test' do
|
|
266
|
+
it 'should work' do
|
|
267
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
268
|
+
end
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
# unit tests for get_webhooks_outgoing_delivery_attempt
|
|
272
|
+
# Retrieve a Delivery Attempt
|
|
273
|
+
# @param id Delivery Attempt ID
|
|
274
|
+
# @param [Hash] opts the optional parameters
|
|
275
|
+
# @return [WebhooksOutgoingDeliveryAttempt]
|
|
276
|
+
describe 'get_webhooks_outgoing_delivery_attempt test' do
|
|
277
|
+
it 'should work' do
|
|
278
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
279
|
+
end
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
# unit tests for get_webhooks_outgoing_endpoint
|
|
283
|
+
# Retrieve a Endpoint
|
|
284
|
+
# @param id Endpoint ID
|
|
285
|
+
# @param [Hash] opts the optional parameters
|
|
286
|
+
# @return [WebhooksOutgoingEndpoint]
|
|
287
|
+
describe 'get_webhooks_outgoing_endpoint test' do
|
|
288
|
+
it 'should work' do
|
|
289
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
290
|
+
end
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
# unit tests for list_goals
|
|
294
|
+
# List Goals
|
|
295
|
+
# @param project_id Project ID
|
|
296
|
+
# @param [Hash] opts the optional parameters
|
|
297
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
298
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
299
|
+
# @return [Array<Goal>]
|
|
300
|
+
describe 'list_goals test' do
|
|
301
|
+
it 'should work' do
|
|
302
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
303
|
+
end
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
# unit tests for list_projects
|
|
307
|
+
# List Projects
|
|
308
|
+
# @param team_id Team ID
|
|
309
|
+
# @param [Hash] opts the optional parameters
|
|
310
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
311
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
312
|
+
# @return [Array<Project>]
|
|
313
|
+
describe 'list_projects test' do
|
|
314
|
+
it 'should work' do
|
|
315
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
316
|
+
end
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
# unit tests for list_projects_tags
|
|
320
|
+
# List Tags
|
|
321
|
+
# @param team_id Team ID
|
|
322
|
+
# @param [Hash] opts the optional parameters
|
|
323
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
324
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
325
|
+
# @return [Array<ProjectsTag>]
|
|
326
|
+
describe 'list_projects_tags test' do
|
|
327
|
+
it 'should work' do
|
|
328
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
329
|
+
end
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
# unit tests for list_scaffolding_absolutely_abstract_creative_concepts
|
|
333
|
+
# List Creative Concepts
|
|
334
|
+
# @param team_id Team ID
|
|
335
|
+
# @param [Hash] opts the optional parameters
|
|
336
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
337
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
338
|
+
# @return [Array<ScaffoldingAbsolutelyAbstractCreativeConcept>]
|
|
339
|
+
describe 'list_scaffolding_absolutely_abstract_creative_concepts test' do
|
|
340
|
+
it 'should work' do
|
|
341
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
342
|
+
end
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
# unit tests for list_scaffolding_completely_concrete_tangible_things
|
|
346
|
+
# List Tangible Things
|
|
347
|
+
# @param absolutely_abstract_creative_concept_id Creative Concept ID
|
|
348
|
+
# @param [Hash] opts the optional parameters
|
|
349
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
350
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
351
|
+
# @return [Array<ScaffoldingCompletelyConcreteTangibleThing>]
|
|
352
|
+
describe 'list_scaffolding_completely_concrete_tangible_things test' do
|
|
353
|
+
it 'should work' do
|
|
354
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
355
|
+
end
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
# unit tests for list_teams
|
|
359
|
+
# List Teams
|
|
360
|
+
# @param [Hash] opts the optional parameters
|
|
361
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
362
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
363
|
+
# @return [Array<Team>]
|
|
364
|
+
describe 'list_teams test' do
|
|
365
|
+
it 'should work' do
|
|
366
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
367
|
+
end
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
# unit tests for list_webhooks_outgoing_delivery_attempts
|
|
371
|
+
# List Delivery Attempts
|
|
372
|
+
# @param delivery_id Delivery ID
|
|
373
|
+
# @param [Hash] opts the optional parameters
|
|
374
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
375
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
376
|
+
# @return [Array<WebhooksOutgoingDeliveryAttempt>]
|
|
377
|
+
describe 'list_webhooks_outgoing_delivery_attempts test' do
|
|
378
|
+
it 'should work' do
|
|
379
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
380
|
+
end
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
# unit tests for list_webhooks_outgoing_deliverys
|
|
384
|
+
# List Deliveries
|
|
385
|
+
# @param endpoint_id Endpoint ID
|
|
386
|
+
# @param [Hash] opts the optional parameters
|
|
387
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
388
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
389
|
+
# @return [Array<WebhooksOutgoingDelivery>]
|
|
390
|
+
describe 'list_webhooks_outgoing_deliverys test' do
|
|
391
|
+
it 'should work' do
|
|
392
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
393
|
+
end
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
# unit tests for list_webhooks_outgoing_endpoints
|
|
397
|
+
# List Endpoints
|
|
398
|
+
# @param team_id Team ID
|
|
399
|
+
# @param [Hash] opts the optional parameters
|
|
400
|
+
# @option opts [Integer] :page Page of results to fetch.
|
|
401
|
+
# @option opts [Integer] :per_page Number of results to return per page.
|
|
402
|
+
# @return [Array<WebhooksOutgoingEndpoint>]
|
|
403
|
+
describe 'list_webhooks_outgoing_endpoints test' do
|
|
404
|
+
it 'should work' do
|
|
405
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
406
|
+
end
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
# unit tests for update_goal
|
|
410
|
+
# Update a Goal
|
|
411
|
+
# @param id Goal ID
|
|
412
|
+
# @param [Hash] opts the optional parameters
|
|
413
|
+
# @option opts [CreateGoalRequest] :create_goal_request
|
|
414
|
+
# @return [Goal]
|
|
415
|
+
describe 'update_goal test' do
|
|
416
|
+
it 'should work' do
|
|
417
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
418
|
+
end
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
# unit tests for update_project
|
|
422
|
+
# Update a Project
|
|
423
|
+
# @param id Project ID
|
|
424
|
+
# @param [Hash] opts the optional parameters
|
|
425
|
+
# @option opts [CreateProjectRequest] :create_project_request
|
|
426
|
+
# @return [Project]
|
|
427
|
+
describe 'update_project test' do
|
|
428
|
+
it 'should work' do
|
|
429
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
430
|
+
end
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
# unit tests for update_projects_tag
|
|
434
|
+
# Update a Tag
|
|
435
|
+
# @param id Tag ID
|
|
436
|
+
# @param [Hash] opts the optional parameters
|
|
437
|
+
# @option opts [CreateProjectsTagRequest] :create_projects_tag_request
|
|
438
|
+
# @return [ProjectsTag]
|
|
439
|
+
describe 'update_projects_tag test' do
|
|
440
|
+
it 'should work' do
|
|
441
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
442
|
+
end
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
# unit tests for update_scaffolding_absolutely_abstract_creative_concept
|
|
446
|
+
# Update a Creative Concept
|
|
447
|
+
# @param id Creative Concept ID
|
|
448
|
+
# @param [Hash] opts the optional parameters
|
|
449
|
+
# @option opts [CreateScaffoldingAbsolutelyAbstractCreativeConceptRequest] :create_scaffolding_absolutely_abstract_creative_concept_request
|
|
450
|
+
# @return [ScaffoldingAbsolutelyAbstractCreativeConcept]
|
|
451
|
+
describe 'update_scaffolding_absolutely_abstract_creative_concept test' do
|
|
452
|
+
it 'should work' do
|
|
453
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
454
|
+
end
|
|
455
|
+
end
|
|
456
|
+
|
|
457
|
+
# unit tests for update_scaffolding_completely_concrete_tangible_thing
|
|
458
|
+
# Update a Tangible Thing
|
|
459
|
+
# @param id Tangible Thing ID
|
|
460
|
+
# @param [Hash] opts the optional parameters
|
|
461
|
+
# @option opts [UpdateScaffoldingCompletelyConcreteTangibleThingRequest] :update_scaffolding_completely_concrete_tangible_thing_request
|
|
462
|
+
# @return [ScaffoldingCompletelyConcreteTangibleThing]
|
|
463
|
+
describe 'update_scaffolding_completely_concrete_tangible_thing test' do
|
|
464
|
+
it 'should work' do
|
|
465
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
466
|
+
end
|
|
467
|
+
end
|
|
468
|
+
|
|
469
|
+
# unit tests for update_team
|
|
470
|
+
# Update a Team
|
|
471
|
+
# @param id Team ID
|
|
472
|
+
# @param [Hash] opts the optional parameters
|
|
473
|
+
# @option opts [CreateTeamRequest] :create_team_request
|
|
474
|
+
# @return [Team]
|
|
475
|
+
describe 'update_team test' do
|
|
476
|
+
it 'should work' do
|
|
477
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
478
|
+
end
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
# unit tests for update_webhooks_outgoing_endpoint
|
|
482
|
+
# Update a Endpoint
|
|
483
|
+
# @param id Endpoint ID
|
|
484
|
+
# @param [Hash] opts the optional parameters
|
|
485
|
+
# @option opts [CreateWebhooksOutgoingEndpointRequest] :create_webhooks_outgoing_endpoint_request
|
|
486
|
+
# @return [WebhooksOutgoingEndpoint]
|
|
487
|
+
describe 'update_webhooks_outgoing_endpoint test' do
|
|
488
|
+
it 'should work' do
|
|
489
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
490
|
+
end
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
end
|