vericred_client 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +201 -0
- data/README.md +9 -10
- data/docs/DrugsApi.md +7 -9
- data/docs/NetworksApi.md +4 -6
- data/docs/PlansApi.md +4 -72
- data/docs/ProvidersApi.md +7 -20
- data/docs/RequestProvidersSearch.md +1 -3
- data/docs/ZipCountiesApi.md +3 -3
- data/git_push.sh +67 -0
- data/lib/vericred_client/api/drugs_api.rb +17 -11
- data/lib/vericred_client/api/networks_api.rb +18 -12
- data/lib/vericred_client/api/plans_api.rb +15 -141
- data/lib/vericred_client/api/providers_api.rb +16 -32
- data/lib/vericred_client/api/zip_counties_api.rb +14 -4
- data/lib/vericred_client/api_client.rb +13 -3
- data/lib/vericred_client/api_error.rb +13 -3
- data/lib/vericred_client/configuration.rb +130 -0
- data/lib/vericred_client/models/applicant.rb +20 -6
- data/lib/vericred_client/models/base.rb +20 -6
- data/lib/vericred_client/models/carrier.rb +20 -6
- data/lib/vericred_client/models/carrier_subsidiary.rb +20 -6
- data/lib/vericred_client/models/county.rb +20 -6
- data/lib/vericred_client/models/county_bulk.rb +20 -6
- data/lib/vericred_client/models/drug.rb +20 -6
- data/lib/vericred_client/models/drug_coverage.rb +20 -6
- data/lib/vericred_client/models/drug_coverage_response.rb +20 -6
- data/lib/vericred_client/models/drug_package.rb +20 -6
- data/lib/vericred_client/models/drug_search_response.rb +20 -6
- data/lib/vericred_client/models/meta.rb +20 -6
- data/lib/vericred_client/models/network.rb +20 -6
- data/lib/vericred_client/models/network_search_response.rb +20 -6
- data/lib/vericred_client/models/plan.rb +20 -6
- data/lib/vericred_client/models/plan_county.rb +20 -6
- data/lib/vericred_client/models/plan_county_bulk.rb +20 -6
- data/lib/vericred_client/models/plan_search_response.rb +20 -6
- data/lib/vericred_client/models/plan_search_result.rb +20 -6
- data/lib/vericred_client/models/plan_zip_county.rb +20 -6
- data/lib/vericred_client/models/pricing.rb +20 -6
- data/lib/vericred_client/models/provider.rb +20 -6
- data/lib/vericred_client/models/provider_show_response.rb +20 -6
- data/lib/vericred_client/models/providers_search_response.rb +20 -6
- data/lib/vericred_client/models/rating_area.rb +20 -6
- data/lib/vericred_client/models/request_plan_find.rb +20 -6
- data/lib/vericred_client/models/request_plan_find_applicant.rb +20 -6
- data/lib/vericred_client/models/request_plan_find_provider.rb +20 -6
- data/lib/vericred_client/models/request_providers_search.rb +21 -9
- data/lib/vericred_client/models/state.rb +20 -6
- data/lib/vericred_client/models/zip_code.rb +20 -6
- data/lib/vericred_client/models/zip_counties_response.rb +20 -6
- data/lib/vericred_client/models/zip_county.rb +20 -6
- data/lib/vericred_client/models/zip_county_bulk.rb +20 -6
- data/lib/vericred_client/models/zip_county_response.rb +20 -6
- data/lib/vericred_client/version.rb +14 -4
- data/lib/vericred_client.rb +13 -3
- data/spec/api/drugs_api_spec.rb +17 -17
- data/spec/api/networks_api_spec.rb +16 -12
- data/spec/api/plans_api_spec.rb +16 -78
- data/spec/api/providers_api_spec.rb +17 -28
- data/spec/api/zip_counties_api_spec.rb +15 -9
- data/spec/api_client_spec.rb +403 -0
- data/spec/configuration_spec.rb +155 -0
- data/spec/models/applicant_spec.rb +196 -0
- data/spec/models/base_spec.rb +160 -0
- data/spec/models/carrier_spec.rb +172 -0
- data/spec/models/carrier_subsidiary_spec.rb +172 -0
- data/spec/models/county_bulk_spec.rb +172 -0
- data/spec/models/county_spec.rb +196 -0
- data/spec/models/drug_coverage_response_spec.rb +178 -0
- data/spec/models/drug_coverage_spec.rb +190 -0
- data/spec/models/drug_package_spec.rb +166 -0
- data/spec/models/drug_search_response_spec.rb +172 -0
- data/spec/models/drug_spec.rb +178 -0
- data/spec/models/meta_spec.rb +160 -0
- data/spec/models/network_search_response_spec.rb +166 -0
- data/spec/models/network_spec.rb +166 -0
- data/spec/models/plan_county_bulk_spec.rb +166 -0
- data/spec/models/plan_county_spec.rb +166 -0
- data/spec/models/plan_search_response_spec.rb +172 -0
- data/spec/models/plan_search_result_spec.rb +562 -0
- data/spec/models/plan_spec.rb +544 -0
- data/spec/models/plan_zip_county_spec.rb +172 -0
- data/spec/models/pricing_spec.rb +220 -0
- data/spec/models/provider_show_response_spec.rb +160 -0
- data/spec/models/provider_spec.rb +322 -0
- data/spec/models/providers_search_response_spec.rb +172 -0
- data/spec/models/rating_area_spec.rb +166 -0
- data/spec/models/request_plan_find_applicant_spec.rb +160 -0
- data/spec/models/request_plan_find_provider_spec.rb +160 -0
- data/spec/models/request_plan_find_spec.rb +226 -0
- data/spec/models/request_providers_search_spec.rb +202 -0
- data/spec/models/state_spec.rb +202 -0
- data/spec/models/zip_code_spec.rb +166 -0
- data/spec/models/zip_counties_response_spec.rb +178 -0
- data/spec/models/zip_county_bulk_spec.rb +178 -0
- data/spec/models/zip_county_response_spec.rb +178 -0
- data/spec/models/zip_county_spec.rb +172 -0
- data/spec/spec_helper.rb +229 -0
- data/vericred_client.gemspec +131 -0
- metadata +80 -2
@@ -0,0 +1,544 @@
|
|
1
|
+
=begin
|
2
|
+
#Vericred API
|
3
|
+
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
|
+
accepts.
|
6
|
+
|
7
|
+
## Getting Started
|
8
|
+
|
9
|
+
Visit our [Developer Portal](https://vericred.3scale.net) to
|
10
|
+
create an account.
|
11
|
+
|
12
|
+
Once you have created an account, you can create one Application for
|
13
|
+
Production and another for our Sandbox (select the appropriate Plan when
|
14
|
+
you create the Application).
|
15
|
+
|
16
|
+
## Authentication
|
17
|
+
|
18
|
+
To authenticate, pass the API Key you created in the Developer Portal as
|
19
|
+
a `Vericred-Api-Key` header.
|
20
|
+
|
21
|
+
`curl -H 'Vericred-Api-Key: YOUR_KEY' "https://api.vericred.com/providers?search_term=Foo&zip_code=11215"`
|
22
|
+
|
23
|
+
## Versioning
|
24
|
+
|
25
|
+
Vericred's API default to the latest version. However, if you need a specific
|
26
|
+
version, you can request it with an `Accept-Version` header.
|
27
|
+
|
28
|
+
The current version is `v3`. Previous versions are `v1` and `v2`.
|
29
|
+
|
30
|
+
`curl -H 'Vericred-Api-Key: YOUR_KEY' -H 'Accept-Version: v2' "https://api.vericred.com/providers?search_term=Foo&zip_code=11215"`
|
31
|
+
|
32
|
+
## Pagination
|
33
|
+
|
34
|
+
Endpoints that accept `page` and `per_page` parameters are paginated. They expose
|
35
|
+
four additional fields that contain data about your position in the response,
|
36
|
+
namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https://tools.ietf.org/html/rfc5988).
|
37
|
+
|
38
|
+
For example, to display 5 results per page and view the second page of a
|
39
|
+
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
+
|
41
|
+
## Sideloading
|
42
|
+
|
43
|
+
When we return multiple levels of an object graph (e.g. `Provider`s and their `State`s
|
44
|
+
we sideload the associated data. In this example, we would provide an Array of
|
45
|
+
`State`s and a `state_id` for each provider. This is done primarily to reduce the
|
46
|
+
payload size since many of the `Provider`s will share a `State`
|
47
|
+
|
48
|
+
```
|
49
|
+
{
|
50
|
+
providers: [{ id: 1, state_id: 1}, { id: 2, state_id: 1 }],
|
51
|
+
states: [{ id: 1, code: 'NY' }]
|
52
|
+
}
|
53
|
+
```
|
54
|
+
|
55
|
+
If you need the second level of the object graph, you can just match the
|
56
|
+
corresponding id.
|
57
|
+
|
58
|
+
## Selecting specific data
|
59
|
+
|
60
|
+
All endpoints allow you to specify which fields you would like to return.
|
61
|
+
This allows you to limit the response to contain only the data you need.
|
62
|
+
|
63
|
+
For example, let's take a request that returns the following JSON by default
|
64
|
+
|
65
|
+
```
|
66
|
+
{
|
67
|
+
provider: {
|
68
|
+
id: 1,
|
69
|
+
name: 'John',
|
70
|
+
phone: '1234567890',
|
71
|
+
field_we_dont_care_about: 'value_we_dont_care_about'
|
72
|
+
},
|
73
|
+
states: [{
|
74
|
+
id: 1,
|
75
|
+
name: 'New York',
|
76
|
+
code: 'NY',
|
77
|
+
field_we_dont_care_about: 'value_we_dont_care_about'
|
78
|
+
}]
|
79
|
+
}
|
80
|
+
```
|
81
|
+
|
82
|
+
To limit our results to only return the fields we care about, we specify the
|
83
|
+
`select` query string parameter for the corresponding fields in the JSON
|
84
|
+
document.
|
85
|
+
|
86
|
+
In this case, we want to select `name` and `phone` from the `provider` key,
|
87
|
+
so we would add the parameters `select=provider.name,provider.phone`.
|
88
|
+
We also want the `name` and `code` from the `states` key, so we would
|
89
|
+
add the parameters `select=states.name,staes.code`. The id field of
|
90
|
+
each document is always returned whether or not it is requested.
|
91
|
+
|
92
|
+
Our final request would be `GET /providers/12345?select=provider.name,provider.phone,states.name,states.code`
|
93
|
+
|
94
|
+
The response would be
|
95
|
+
|
96
|
+
```
|
97
|
+
{
|
98
|
+
provider: {
|
99
|
+
id: 1,
|
100
|
+
name: 'John',
|
101
|
+
phone: '1234567890'
|
102
|
+
},
|
103
|
+
states: [{
|
104
|
+
id: 1,
|
105
|
+
name: 'New York',
|
106
|
+
code: 'NY'
|
107
|
+
}]
|
108
|
+
}
|
109
|
+
```
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
OpenAPI spec version: 1.0.0
|
114
|
+
|
115
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
116
|
+
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
128
|
+
|
129
|
+
=end
|
130
|
+
|
131
|
+
require 'spec_helper'
|
132
|
+
require 'json'
|
133
|
+
require 'date'
|
134
|
+
|
135
|
+
# Unit tests for VericredClient::Plan
|
136
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
137
|
+
# Please update as you see appropriate
|
138
|
+
describe 'Plan' do
|
139
|
+
before do
|
140
|
+
# run before each test
|
141
|
+
@instance = VericredClient::Plan.new
|
142
|
+
end
|
143
|
+
|
144
|
+
after do
|
145
|
+
# run after each test
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test an instance of Plan' do
|
149
|
+
it 'should create an instact of Plan' do
|
150
|
+
expect(@instance).to be_instance_of(VericredClient::Plan)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
describe 'test attribute "adult_dental"' do
|
154
|
+
it 'should work' do
|
155
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
describe 'test attribute "age29_rider"' do
|
160
|
+
it 'should work' do
|
161
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
describe 'test attribute "ambulance"' do
|
166
|
+
it 'should work' do
|
167
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
describe 'test attribute "benefits_summary_url"' do
|
172
|
+
it 'should work' do
|
173
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
describe 'test attribute "buy_link"' 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 "carrier_name"' 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 "child_dental"' 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 "child_eyewear"' 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 "child_eye_exam"' 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 "customer_service_phone_number"' 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 "durable_medical_equipment"' 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 "diagnostic_test"' 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 "dp_rider"' 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 "drug_formulary_url"' 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
|
+
describe 'test attribute "effective_date"' do
|
238
|
+
it 'should work' do
|
239
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
describe 'test attribute "expiration_date"' 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
|
+
describe 'test attribute "emergency_room"' do
|
250
|
+
it 'should work' do
|
251
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
describe 'test attribute "family_drug_deductible"' do
|
256
|
+
it 'should work' do
|
257
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
258
|
+
end
|
259
|
+
end
|
260
|
+
|
261
|
+
describe 'test attribute "family_drug_moop"' do
|
262
|
+
it 'should work' do
|
263
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
267
|
+
describe 'test attribute "family_medical_deductible"' do
|
268
|
+
it 'should work' do
|
269
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
describe 'test attribute "family_medical_moop"' do
|
274
|
+
it 'should work' do
|
275
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
describe 'test attribute "fp_rider"' do
|
280
|
+
it 'should work' do
|
281
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
describe 'test attribute "generic_drugs"' do
|
286
|
+
it 'should work' do
|
287
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
describe 'test attribute "habilitation_services"' do
|
292
|
+
it 'should work' do
|
293
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
describe 'test attribute "hios_issuer_id"' do
|
298
|
+
it 'should work' do
|
299
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
describe 'test attribute "home_health_care"' do
|
304
|
+
it 'should work' do
|
305
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
describe 'test attribute "hospice_service"' do
|
310
|
+
it 'should work' do
|
311
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
describe 'test attribute "id"' do
|
316
|
+
it 'should work' do
|
317
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
describe 'test attribute "imaging"' do
|
322
|
+
it 'should work' do
|
323
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
describe 'test attribute "in_network_ids"' do
|
328
|
+
it 'should work' do
|
329
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
330
|
+
end
|
331
|
+
end
|
332
|
+
|
333
|
+
describe 'test attribute "individual_drug_deductible"' do
|
334
|
+
it 'should work' do
|
335
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
describe 'test attribute "individual_drug_moop"' 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
|
+
describe 'test attribute "individual_medical_deductible"' do
|
346
|
+
it 'should work' do
|
347
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
351
|
+
describe 'test attribute "individual_medical_moop"' do
|
352
|
+
it 'should work' do
|
353
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
describe 'test attribute "inpatient_birth"' do
|
358
|
+
it 'should work' do
|
359
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
363
|
+
describe 'test attribute "inpatient_facility"' do
|
364
|
+
it 'should work' do
|
365
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
describe 'test attribute "inpatient_mental_health"' do
|
370
|
+
it 'should work' do
|
371
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
describe 'test attribute "inpatient_physician"' do
|
376
|
+
it 'should work' do
|
377
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
378
|
+
end
|
379
|
+
end
|
380
|
+
|
381
|
+
describe 'test attribute "inpatient_substance"' do
|
382
|
+
it 'should work' do
|
383
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
describe 'test attribute "level"' do
|
388
|
+
it 'should work' do
|
389
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
393
|
+
describe 'test attribute "logo_url"' do
|
394
|
+
it 'should work' do
|
395
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
describe 'test attribute "name"' do
|
400
|
+
it 'should work' do
|
401
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
405
|
+
describe 'test attribute "network_size"' do
|
406
|
+
it 'should work' do
|
407
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
describe 'test attribute "non_preferred_brand_drugs"' do
|
412
|
+
it 'should work' do
|
413
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
describe 'test attribute "on_market"' do
|
418
|
+
it 'should work' do
|
419
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
describe 'test attribute "off_market"' do
|
424
|
+
it 'should work' do
|
425
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
426
|
+
end
|
427
|
+
end
|
428
|
+
|
429
|
+
describe 'test attribute "out_of_network_coverage"' do
|
430
|
+
it 'should work' do
|
431
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
435
|
+
describe 'test attribute "out_of_network_ids"' do
|
436
|
+
it 'should work' do
|
437
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
438
|
+
end
|
439
|
+
end
|
440
|
+
|
441
|
+
describe 'test attribute "outpatient_facility"' do
|
442
|
+
it 'should work' do
|
443
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
describe 'test attribute "outpatient_mental_health"' do
|
448
|
+
it 'should work' do
|
449
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
450
|
+
end
|
451
|
+
end
|
452
|
+
|
453
|
+
describe 'test attribute "outpatient_physician"' do
|
454
|
+
it 'should work' do
|
455
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
describe 'test attribute "outpatient_substance"' do
|
460
|
+
it 'should work' do
|
461
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
465
|
+
describe 'test attribute "plan_market"' do
|
466
|
+
it 'should work' do
|
467
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
471
|
+
describe 'test attribute "plan_type"' do
|
472
|
+
it 'should work' do
|
473
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
describe 'test attribute "preferred_brand_drugs"' do
|
478
|
+
it 'should work' do
|
479
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
483
|
+
describe 'test attribute "prenatal_postnatal_care"' do
|
484
|
+
it 'should work' do
|
485
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
486
|
+
end
|
487
|
+
end
|
488
|
+
|
489
|
+
describe 'test attribute "preventative_care"' do
|
490
|
+
it 'should work' do
|
491
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
495
|
+
describe 'test attribute "premium_subsidized"' do
|
496
|
+
it 'should work' do
|
497
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
501
|
+
describe 'test attribute "premium"' do
|
502
|
+
it 'should work' do
|
503
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
504
|
+
end
|
505
|
+
end
|
506
|
+
|
507
|
+
describe 'test attribute "primary_care_physician"' do
|
508
|
+
it 'should work' do
|
509
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
513
|
+
describe 'test attribute "rehabilitation_services"' do
|
514
|
+
it 'should work' do
|
515
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
519
|
+
describe 'test attribute "skilled_nursing"' do
|
520
|
+
it 'should work' do
|
521
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
522
|
+
end
|
523
|
+
end
|
524
|
+
|
525
|
+
describe 'test attribute "specialist"' do
|
526
|
+
it 'should work' do
|
527
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
528
|
+
end
|
529
|
+
end
|
530
|
+
|
531
|
+
describe 'test attribute "specialty_drugs"' do
|
532
|
+
it 'should work' do
|
533
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
534
|
+
end
|
535
|
+
end
|
536
|
+
|
537
|
+
describe 'test attribute "urgent_care"' do
|
538
|
+
it 'should work' do
|
539
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
540
|
+
end
|
541
|
+
end
|
542
|
+
|
543
|
+
end
|
544
|
+
|