boxx_client 1.4.1
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 +7 -0
- data/README.md +109 -0
- data/Rakefile +8 -0
- data/boxx_client.gemspec +46 -0
- data/dist/boxx_client-1.4.0.gem +0 -0
- data/dist/examples/upload_customer.rb +76 -0
- data/dist/examples/upload_product.rb +54 -0
- data/dist/examples/upload_transaction.rb +56 -0
- data/docs/DeleteAll.md +10 -0
- data/docs/DeleteAllApi.md +56 -0
- data/docs/DeleteSpecific.md +11 -0
- data/docs/DeleteSpecificApi.md +56 -0
- data/docs/InlineResponse200.md +9 -0
- data/docs/InlineResponse2001.md +9 -0
- data/docs/InlineResponse2001Response.md +9 -0
- data/docs/InlineResponse200Response.md +11 -0
- data/docs/InlineResponse400.md +9 -0
- data/docs/InlineResponse4001.md +9 -0
- data/docs/UploadCustomer.md +14 -0
- data/docs/UploadCustomerDeviceTokens.md +11 -0
- data/docs/UploadCustomerMobileTokens.md +10 -0
- data/docs/UploadCustomerRequest.md +11 -0
- data/docs/UploadDataApi.md +149 -0
- data/docs/UploadOkResponse.md +9 -0
- data/docs/UploadOkResponseResult.md +11 -0
- data/docs/UploadProduct.md +13 -0
- data/docs/UploadProductRequest.md +11 -0
- data/docs/UploadTransaction.md +16 -0
- data/docs/UploadTransactionRequest.md +11 -0
- data/git_push.sh +55 -0
- data/lib/boxx_client.rb +60 -0
- data/lib/boxx_client/api/delete_all_api.rb +78 -0
- data/lib/boxx_client/api/delete_specific_api.rb +78 -0
- data/lib/boxx_client/api/upload_data_api.rb +188 -0
- data/lib/boxx_client/api_client.rb +388 -0
- data/lib/boxx_client/api_error.rb +38 -0
- data/lib/boxx_client/configuration.rb +202 -0
- data/lib/boxx_client/models/delete_all.rb +224 -0
- data/lib/boxx_client/models/delete_specific.rb +241 -0
- data/lib/boxx_client/models/inline_response_200.rb +197 -0
- data/lib/boxx_client/models/inline_response_200_1.rb +197 -0
- data/lib/boxx_client/models/inline_response_200_1_response.rb +199 -0
- data/lib/boxx_client/models/inline_response_200_response.rb +217 -0
- data/lib/boxx_client/models/inline_response_400.rb +197 -0
- data/lib/boxx_client/models/inline_response_400_1.rb +197 -0
- data/lib/boxx_client/models/upload_customer.rb +255 -0
- data/lib/boxx_client/models/upload_customer_device_tokens.rb +215 -0
- data/lib/boxx_client/models/upload_customer_mobile_tokens.rb +206 -0
- data/lib/boxx_client/models/upload_customer_request.rb +236 -0
- data/lib/boxx_client/models/upload_ok_response.rb +197 -0
- data/lib/boxx_client/models/upload_ok_response_result.rb +217 -0
- data/lib/boxx_client/models/upload_product.rb +244 -0
- data/lib/boxx_client/models/upload_product_request.rb +236 -0
- data/lib/boxx_client/models/upload_transaction.rb +279 -0
- data/lib/boxx_client/models/upload_transaction_request.rb +236 -0
- data/lib/boxx_client/version.rb +15 -0
- data/spec/api/delete_all_api_spec.rb +47 -0
- data/spec/api/delete_specific_api_spec.rb +47 -0
- data/spec/api/upload_data_api_spec.rb +71 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/delete_all_spec.rb +54 -0
- data/spec/models/delete_specific_spec.rb +60 -0
- data/spec/models/inline_response_200_1_response_spec.rb +48 -0
- data/spec/models/inline_response_200_1_spec.rb +48 -0
- data/spec/models/inline_response_200_response_spec.rb +60 -0
- data/spec/models/inline_response_200_spec.rb +48 -0
- data/spec/models/inline_response_400_1_spec.rb +48 -0
- data/spec/models/inline_response_400_spec.rb +48 -0
- data/spec/models/upload_customer_device_tokens_spec.rb +60 -0
- data/spec/models/upload_customer_mobile_tokens_spec.rb +54 -0
- data/spec/models/upload_customer_request_spec.rb +60 -0
- data/spec/models/upload_customer_spec.rb +78 -0
- data/spec/models/upload_ok_response_result_spec.rb +60 -0
- data/spec/models/upload_ok_response_spec.rb +48 -0
- data/spec/models/upload_product_request_spec.rb +60 -0
- data/spec/models/upload_product_spec.rb +72 -0
- data/spec/models/upload_transaction_request_spec.rb +60 -0
- data/spec/models/upload_transaction_spec.rb +90 -0
- data/spec/spec_helper.rb +111 -0
- metadata +327 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::Configuration do
|
16
|
+
let(:config) { BoxxClient::Configuration.default }
|
17
|
+
|
18
|
+
before(:each) do
|
19
|
+
# uncomment below to setup host and base_path
|
20
|
+
#require 'URI'
|
21
|
+
#uri = URI.parse("http://data.boxx.ai")
|
22
|
+
#BoxxClient.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("http://data.boxx.ai")
|
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("http://data.boxx.ai")
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::DeleteAll
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DeleteAll' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::DeleteAll.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DeleteAll' do
|
31
|
+
it 'should create an instance of DeleteAll' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::DeleteAll)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "client_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "access_token"' 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 "data_type"' 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
|
+
end
|
54
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::DeleteSpecific
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DeleteSpecific' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::DeleteSpecific.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DeleteSpecific' do
|
31
|
+
it 'should create an instance of DeleteSpecific' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::DeleteSpecific)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "client_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "access_token"' 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 "data_type"' 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 "data"' 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,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse2001Response
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse2001Response' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse2001Response.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse2001Response' do
|
31
|
+
it 'should create an instance of InlineResponse2001Response' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse2001Response)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "failed_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "delete_items"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse2001
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse2001' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse2001.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse2001' do
|
31
|
+
it 'should create an instance of InlineResponse2001' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse2001)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "error_status"' 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 "response"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse200Response
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse200Response' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse200Response.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse200Response' do
|
31
|
+
it 'should create an instance of InlineResponse200Response' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse200Response)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "total_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "failed_items"' 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 "delete_items"' 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 "found_items"' 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,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse200
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse200' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse200.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse200' do
|
31
|
+
it 'should create an instance of InlineResponse200' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse200)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "error_status"' 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 "response"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse4001
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse4001' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse4001.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse4001' do
|
31
|
+
it 'should create an instance of InlineResponse4001' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse4001)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "error_status"' 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 "response"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Upload and Delete Data API
|
3
|
+
|
4
|
+
#Boxx.ai's customer, product and interaction data ingestion sdk
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.4.1
|
7
|
+
Contact: aida@boxx.ai
|
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 BoxxClient::InlineResponse400
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse400' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BoxxClient::InlineResponse400.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse400' do
|
31
|
+
it 'should create an instance of InlineResponse400' do
|
32
|
+
expect(@instance).to be_instance_of(BoxxClient::InlineResponse400)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "status"' 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 "result"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|