dyspatch_client 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/LICENSE +202 -0
  4. data/README.md +130 -0
  5. data/Rakefile +8 -0
  6. data/docs/APIError.md +10 -0
  7. data/docs/CompiledRead.md +12 -0
  8. data/docs/CreatedAt.md +7 -0
  9. data/docs/Cursor.md +9 -0
  10. data/docs/LanguageId.md +7 -0
  11. data/docs/LocalizationId.md +7 -0
  12. data/docs/LocalizationMetaRead.md +11 -0
  13. data/docs/LocalizationName.md +7 -0
  14. data/docs/LocalizationRead.md +15 -0
  15. data/docs/LocalizationUrl.md +7 -0
  16. data/docs/LocalizationsApi.md +66 -0
  17. data/docs/TemplateDescription.md +7 -0
  18. data/docs/TemplateId.md +7 -0
  19. data/docs/TemplateMetaRead.md +14 -0
  20. data/docs/TemplateName.md +7 -0
  21. data/docs/TemplateRead.md +15 -0
  22. data/docs/TemplateUrl.md +7 -0
  23. data/docs/TemplatesApi.md +125 -0
  24. data/docs/TemplatesRead.md +9 -0
  25. data/docs/UpdatedAt.md +7 -0
  26. data/dyspatch_client.gemspec +45 -0
  27. data/git_push.sh +55 -0
  28. data/lib/dyspatch_client.rb +59 -0
  29. data/lib/dyspatch_client/api/localizations_api.rb +83 -0
  30. data/lib/dyspatch_client/api/templates_api.rb +140 -0
  31. data/lib/dyspatch_client/api_client.rb +389 -0
  32. data/lib/dyspatch_client/api_error.rb +38 -0
  33. data/lib/dyspatch_client/configuration.rb +209 -0
  34. data/lib/dyspatch_client/models/api_error.rb +242 -0
  35. data/lib/dyspatch_client/models/compiled_read.rb +277 -0
  36. data/lib/dyspatch_client/models/created_at.rb +179 -0
  37. data/lib/dyspatch_client/models/cursor.rb +199 -0
  38. data/lib/dyspatch_client/models/language_id.rb +179 -0
  39. data/lib/dyspatch_client/models/localization_id.rb +179 -0
  40. data/lib/dyspatch_client/models/localization_meta_read.rb +219 -0
  41. data/lib/dyspatch_client/models/localization_name.rb +179 -0
  42. data/lib/dyspatch_client/models/localization_read.rb +258 -0
  43. data/lib/dyspatch_client/models/localization_url.rb +179 -0
  44. data/lib/dyspatch_client/models/template_description.rb +179 -0
  45. data/lib/dyspatch_client/models/template_id.rb +179 -0
  46. data/lib/dyspatch_client/models/template_meta_read.rb +251 -0
  47. data/lib/dyspatch_client/models/template_name.rb +179 -0
  48. data/lib/dyspatch_client/models/template_read.rb +260 -0
  49. data/lib/dyspatch_client/models/template_url.rb +179 -0
  50. data/lib/dyspatch_client/models/templates_read.rb +200 -0
  51. data/lib/dyspatch_client/models/updated_at.rb +179 -0
  52. data/lib/dyspatch_client/version.rb +15 -0
  53. data/spec/api/localizations_api_spec.rb +48 -0
  54. data/spec/api/templates_api_spec.rb +61 -0
  55. data/spec/api_client_spec.rb +226 -0
  56. data/spec/configuration_spec.rb +42 -0
  57. data/spec/models/api_error_spec.rb +58 -0
  58. data/spec/models/compiled_read_spec.rb +66 -0
  59. data/spec/models/created_at_spec.rb +36 -0
  60. data/spec/models/cursor_spec.rb +48 -0
  61. data/spec/models/language_id_spec.rb +36 -0
  62. data/spec/models/localization_id_spec.rb +36 -0
  63. data/spec/models/localization_meta_read_spec.rb +60 -0
  64. data/spec/models/localization_name_spec.rb +36 -0
  65. data/spec/models/localization_read_spec.rb +84 -0
  66. data/spec/models/localization_url_spec.rb +36 -0
  67. data/spec/models/template_description_spec.rb +36 -0
  68. data/spec/models/template_id_spec.rb +36 -0
  69. data/spec/models/template_meta_read_spec.rb +78 -0
  70. data/spec/models/template_name_spec.rb +36 -0
  71. data/spec/models/template_read_spec.rb +84 -0
  72. data/spec/models/template_url_spec.rb +36 -0
  73. data/spec/models/templates_read_spec.rb +48 -0
  74. data/spec/models/updated_at_spec.rb +36 -0
  75. data/spec/spec_helper.rb +111 -0
  76. metadata +329 -0
@@ -0,0 +1,15 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ module DyspatchClient
14
+ VERSION = "1.0.0"
15
+ end
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
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 DyspatchClient::LocalizationsApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'LocalizationsApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = DyspatchClient::LocalizationsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of LocalizationsApi' do
30
+ it 'should create an instance of LocalizationsApi' do
31
+ expect(@instance).to be_instance_of(DyspatchClient::LocalizationsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for localizations_localization_id_get
36
+ # Get Localization Object by ID
37
+ # Returns a specific localization object with a matching ID
38
+ # @param localization_id A localization ID
39
+ # @param accept A version of the API that should be used for the request. For example, to use version \"2018.08\", set the value to \"application/vnd.dyspatch.2018.08+json\"
40
+ # @param [Hash] opts the optional parameters
41
+ # @return [LocalizationRead]
42
+ describe 'localizations_localization_id_get test' do
43
+ it "should work" do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,61 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
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 DyspatchClient::TemplatesApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'TemplatesApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = DyspatchClient::TemplatesApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of TemplatesApi' do
30
+ it 'should create an instance of TemplatesApi' do
31
+ expect(@instance).to be_instance_of(DyspatchClient::TemplatesApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for templates_get
36
+ # List Templates
37
+ # Gets a list of Template Metadata objects for all templates. Up to 25 results returned before results are paginated.
38
+ # @param accept A version of the API that should be used for the request. For example, to use version \"2018.08\", set the value to \"application/vnd.dyspatch.2018.08+json\"
39
+ # @param [Hash] opts the optional parameters
40
+ # @option opts [String] :cursor A cursor value used to retrieve a specific page from a paginated result set.
41
+ # @return [TemplatesRead]
42
+ describe 'templates_get test' do
43
+ it "should work" do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
48
+ # unit tests for templates_template_id_get
49
+ # Get Template by ID
50
+ # Gets a template object with the matching ID. If the template has published content the \"compiled\" field will contain the template .
51
+ # @param template_id A template ID
52
+ # @param accept A version of the API that should be used for the request. For example, to use version \"2018.08\", set the value to \"application/vnd.dyspatch.2018.08+json\"
53
+ # @param [Hash] opts the optional parameters
54
+ # @return [TemplateRead]
55
+ describe 'templates_template_id_get test' do
56
+ it "should work" do
57
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
58
+ end
59
+ end
60
+
61
+ end
@@ -0,0 +1,226 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
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
+
15
+ describe DyspatchClient::ApiClient do
16
+ context 'initialization' do
17
+ context 'URL stuff' do
18
+ context 'host' do
19
+ it 'removes http from host' do
20
+ DyspatchClient.configure { |c| c.host = 'http://example.com' }
21
+ expect(DyspatchClient::Configuration.default.host).to eq('example.com')
22
+ end
23
+
24
+ it 'removes https from host' do
25
+ DyspatchClient.configure { |c| c.host = 'https://wookiee.com' }
26
+ expect(DyspatchClient::ApiClient.default.config.host).to eq('wookiee.com')
27
+ end
28
+
29
+ it 'removes trailing path from host' do
30
+ DyspatchClient.configure { |c| c.host = 'hobo.com/v4' }
31
+ expect(DyspatchClient::Configuration.default.host).to eq('hobo.com')
32
+ end
33
+ end
34
+
35
+ context 'base_path' do
36
+ it "prepends a slash to base_path" do
37
+ DyspatchClient.configure { |c| c.base_path = 'v4/dog' }
38
+ expect(DyspatchClient::Configuration.default.base_path).to eq('/v4/dog')
39
+ end
40
+
41
+ it "doesn't prepend a slash if one is already there" do
42
+ DyspatchClient.configure { |c| c.base_path = '/v4/dog' }
43
+ expect(DyspatchClient::Configuration.default.base_path).to eq('/v4/dog')
44
+ end
45
+
46
+ it "ends up as a blank string if nil" do
47
+ DyspatchClient.configure { |c| c.base_path = nil }
48
+ expect(DyspatchClient::Configuration.default.base_path).to eq('')
49
+ end
50
+ end
51
+ end
52
+ end
53
+
54
+ describe "params_encoding in #build_request" do
55
+ let(:config) { DyspatchClient::Configuration.new }
56
+ let(:api_client) { DyspatchClient::ApiClient.new(config) }
57
+
58
+ it "defaults to nil" do
59
+ expect(DyspatchClient::Configuration.default.params_encoding).to eq(nil)
60
+ expect(config.params_encoding).to eq(nil)
61
+
62
+ request = api_client.build_request(:get, '/test')
63
+ expect(request.options[:params_encoding]).to eq(nil)
64
+ end
65
+
66
+ it "can be customized" do
67
+ config.params_encoding = :multi
68
+ request = api_client.build_request(:get, '/test')
69
+ expect(request.options[:params_encoding]).to eq(:multi)
70
+ end
71
+ end
72
+
73
+ describe "timeout in #build_request" do
74
+ let(:config) { DyspatchClient::Configuration.new }
75
+ let(:api_client) { DyspatchClient::ApiClient.new(config) }
76
+
77
+ it "defaults to 0" do
78
+ expect(DyspatchClient::Configuration.default.timeout).to eq(0)
79
+ expect(config.timeout).to eq(0)
80
+
81
+ request = api_client.build_request(:get, '/test')
82
+ expect(request.options[:timeout]).to eq(0)
83
+ end
84
+
85
+ it "can be customized" do
86
+ config.timeout = 100
87
+ request = api_client.build_request(:get, '/test')
88
+ expect(request.options[:timeout]).to eq(100)
89
+ end
90
+ end
91
+
92
+ describe "#deserialize" do
93
+ it "handles Array<Integer>" do
94
+ api_client = DyspatchClient::ApiClient.new
95
+ headers = {'Content-Type' => 'application/json'}
96
+ response = double('response', headers: headers, body: '[12, 34]')
97
+ data = api_client.deserialize(response, 'Array<Integer>')
98
+ expect(data).to be_instance_of(Array)
99
+ expect(data).to eq([12, 34])
100
+ end
101
+
102
+ it "handles Array<Array<Integer>>" do
103
+ api_client = DyspatchClient::ApiClient.new
104
+ headers = {'Content-Type' => 'application/json'}
105
+ response = double('response', headers: headers, body: '[[12, 34], [56]]')
106
+ data = api_client.deserialize(response, 'Array<Array<Integer>>')
107
+ expect(data).to be_instance_of(Array)
108
+ expect(data).to eq([[12, 34], [56]])
109
+ end
110
+
111
+ it "handles Hash<String, String>" do
112
+ api_client = DyspatchClient::ApiClient.new
113
+ headers = {'Content-Type' => 'application/json'}
114
+ response = double('response', headers: headers, body: '{"message": "Hello"}')
115
+ data = api_client.deserialize(response, 'Hash<String, String>')
116
+ expect(data).to be_instance_of(Hash)
117
+ expect(data).to eq({:message => 'Hello'})
118
+ end
119
+ end
120
+
121
+ describe "#object_to_hash" do
122
+ it "ignores nils and includes empty arrays" do
123
+ # uncomment below to test object_to_hash for model
124
+ #api_client = DyspatchClient::ApiClient.new
125
+ #_model = DyspatchClient::ModelName.new
126
+ # update the model attribute below
127
+ #_model.id = 1
128
+ # update the expected value (hash) below
129
+ #expected = {id: 1, name: '', tags: []}
130
+ #expect(api_client.object_to_hash(_model)).to eq(expected)
131
+ end
132
+ end
133
+
134
+ describe "#build_collection_param" do
135
+ let(:param) { ['aa', 'bb', 'cc'] }
136
+ let(:api_client) { DyspatchClient::ApiClient.new }
137
+
138
+ it "works for csv" do
139
+ expect(api_client.build_collection_param(param, :csv)).to eq('aa,bb,cc')
140
+ end
141
+
142
+ it "works for ssv" do
143
+ expect(api_client.build_collection_param(param, :ssv)).to eq('aa bb cc')
144
+ end
145
+
146
+ it "works for tsv" do
147
+ expect(api_client.build_collection_param(param, :tsv)).to eq("aa\tbb\tcc")
148
+ end
149
+
150
+ it "works for pipes" do
151
+ expect(api_client.build_collection_param(param, :pipes)).to eq('aa|bb|cc')
152
+ end
153
+
154
+ it "works for multi" do
155
+ expect(api_client.build_collection_param(param, :multi)).to eq(['aa', 'bb', 'cc'])
156
+ end
157
+
158
+ it "fails for invalid collection format" do
159
+ expect(proc { api_client.build_collection_param(param, :INVALID) }).to raise_error(RuntimeError, 'unknown collection format: :INVALID')
160
+ end
161
+ end
162
+
163
+ describe "#json_mime?" do
164
+ let(:api_client) { DyspatchClient::ApiClient.new }
165
+
166
+ it "works" do
167
+ expect(api_client.json_mime?(nil)).to eq false
168
+ expect(api_client.json_mime?('')).to eq false
169
+
170
+ expect(api_client.json_mime?('application/json')).to eq true
171
+ expect(api_client.json_mime?('application/json; charset=UTF8')).to eq true
172
+ expect(api_client.json_mime?('APPLICATION/JSON')).to eq true
173
+
174
+ expect(api_client.json_mime?('application/xml')).to eq false
175
+ expect(api_client.json_mime?('text/plain')).to eq false
176
+ expect(api_client.json_mime?('application/jsonp')).to eq false
177
+ end
178
+ end
179
+
180
+ describe "#select_header_accept" do
181
+ let(:api_client) { DyspatchClient::ApiClient.new }
182
+
183
+ it "works" do
184
+ expect(api_client.select_header_accept(nil)).to be_nil
185
+ expect(api_client.select_header_accept([])).to be_nil
186
+
187
+ expect(api_client.select_header_accept(['application/json'])).to eq('application/json')
188
+ expect(api_client.select_header_accept(['application/xml', 'application/json; charset=UTF8'])).to eq('application/json; charset=UTF8')
189
+ expect(api_client.select_header_accept(['APPLICATION/JSON', 'text/html'])).to eq('APPLICATION/JSON')
190
+
191
+ expect(api_client.select_header_accept(['application/xml'])).to eq('application/xml')
192
+ expect(api_client.select_header_accept(['text/html', 'application/xml'])).to eq('text/html,application/xml')
193
+ end
194
+ end
195
+
196
+ describe "#select_header_content_type" do
197
+ let(:api_client) { DyspatchClient::ApiClient.new }
198
+
199
+ it "works" do
200
+ expect(api_client.select_header_content_type(nil)).to eq('application/json')
201
+ expect(api_client.select_header_content_type([])).to eq('application/json')
202
+
203
+ expect(api_client.select_header_content_type(['application/json'])).to eq('application/json')
204
+ expect(api_client.select_header_content_type(['application/xml', 'application/json; charset=UTF8'])).to eq('application/json; charset=UTF8')
205
+ expect(api_client.select_header_content_type(['APPLICATION/JSON', 'text/html'])).to eq('APPLICATION/JSON')
206
+ expect(api_client.select_header_content_type(['application/xml'])).to eq('application/xml')
207
+ expect(api_client.select_header_content_type(['text/plain', 'application/xml'])).to eq('text/plain')
208
+ end
209
+ end
210
+
211
+ describe "#sanitize_filename" do
212
+ let(:api_client) { DyspatchClient::ApiClient.new }
213
+
214
+ it "works" do
215
+ expect(api_client.sanitize_filename('sun')).to eq('sun')
216
+ expect(api_client.sanitize_filename('sun.gif')).to eq('sun.gif')
217
+ expect(api_client.sanitize_filename('../sun.gif')).to eq('sun.gif')
218
+ expect(api_client.sanitize_filename('/var/tmp/sun.gif')).to eq('sun.gif')
219
+ expect(api_client.sanitize_filename('./sun.gif')).to eq('sun.gif')
220
+ expect(api_client.sanitize_filename('..\sun.gif')).to eq('sun.gif')
221
+ expect(api_client.sanitize_filename('\var\tmp\sun.gif')).to eq('sun.gif')
222
+ expect(api_client.sanitize_filename('c:\var\tmp\sun.gif')).to eq('sun.gif')
223
+ expect(api_client.sanitize_filename('.\sun.gif')).to eq('sun.gif')
224
+ end
225
+ end
226
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
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
+
15
+ describe DyspatchClient::Configuration do
16
+ let(:config) { DyspatchClient::Configuration.default }
17
+
18
+ before(:each) do
19
+ # uncomment below to setup host and base_path
20
+ #require 'URI'
21
+ #uri = URI.parse("https://api.dyspatch.io")
22
+ #DyspatchClient.configure do |c|
23
+ # c.host = uri.host
24
+ # c.base_path = uri.path
25
+ #end
26
+ end
27
+
28
+ describe '#base_url' do
29
+ it 'should have the default value' do
30
+ # uncomment below to test default value of the base path
31
+ #expect(config.base_url).to eq("https://api.dyspatch.io")
32
+ end
33
+
34
+ it 'should remove trailing slashes' do
35
+ [nil, '', '/', '//'].each do |base_path|
36
+ config.base_path = base_path
37
+ # uncomment below to test trailing slashes
38
+ #expect(config.base_url).to eq("https://api.dyspatch.io")
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #Dyspatch API
3
+
4
+ ## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
5
+
6
+ OpenAPI spec version: 2018.08
7
+ Contact: support@dyspatch.io
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 DyspatchClient::APIError
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'APIError' do
21
+ before do
22
+ # run before each test
23
+ @instance = DyspatchClient::APIError.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of APIError' do
31
+ it 'should create an instance of APIError' do
32
+ expect(@instance).to be_instance_of(DyspatchClient::APIError)
33
+ end
34
+ end
35
+ describe 'test attribute "code"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["server_error", "invalid_parameter", "invalid_body", "invalid_request", "unauthorized", "unauthenticated", "not_found", "rate_limited"])
39
+ #validator.allowable_values.each do |value|
40
+ # expect { @instance.code = value }.not_to raise_error
41
+ #end
42
+ end
43
+ end
44
+
45
+ describe 'test attribute "message"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "parameter"' 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
58
+