cloudmersive-validate-api-client 2.1.3 → 2.1.9

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 (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +29 -4
  3. data/docs/BotCheckResponse.md +8 -0
  4. data/docs/DomainApi.md +275 -0
  5. data/docs/IPAddressApi.md +165 -0
  6. data/docs/IPIntelligenceResponse.md +16 -0
  7. data/docs/IPReverseDNSLookupResponse.md +9 -0
  8. data/docs/PhishingCheckRequest.md +8 -0
  9. data/docs/PhishingCheckResponse.md +9 -0
  10. data/docs/SqlInjectionCheckBatchRequest.md +9 -0
  11. data/docs/SqlInjectionCheckBatchResponse.md +8 -0
  12. data/docs/SqlInjectionCheckRequestItem.md +8 -0
  13. data/docs/SqlInjectionDetectionResult.md +10 -0
  14. data/docs/TextInputApi.md +115 -1
  15. data/docs/UrlSafetyCheckRequestFull.md +8 -0
  16. data/docs/UrlSafetyCheckResponseFull.md +9 -0
  17. data/docs/UrlSsrfRequestBatch.md +8 -0
  18. data/docs/UrlSsrfRequestFull.md +9 -0
  19. data/docs/UrlSsrfResponseBatch.md +8 -0
  20. data/docs/UrlSsrfResponseFull.md +9 -0
  21. data/docs/ValidateUrlResponseSyntaxOnly.md +1 -0
  22. data/lib/cloudmersive-validate-api-client.rb +15 -0
  23. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +270 -0
  24. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +162 -0
  25. data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +113 -2
  26. data/lib/cloudmersive-validate-api-client/models/bot_check_response.rb +186 -0
  27. data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +1 -1
  28. data/lib/cloudmersive-validate-api-client/models/ip_intelligence_response.rb +266 -0
  29. data/lib/cloudmersive-validate-api-client/models/ip_reverse_dns_lookup_response.rb +196 -0
  30. data/lib/cloudmersive-validate-api-client/models/phishing_check_request.rb +186 -0
  31. data/lib/cloudmersive-validate-api-client/models/phishing_check_response.rb +196 -0
  32. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_request.rb +198 -0
  33. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_response.rb +188 -0
  34. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_request_item.rb +186 -0
  35. data/lib/cloudmersive-validate-api-client/models/sql_injection_detection_result.rb +206 -0
  36. data/lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb +186 -0
  37. data/lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb +196 -0
  38. data/lib/cloudmersive-validate-api-client/models/url_ssrf_request_batch.rb +188 -0
  39. data/lib/cloudmersive-validate-api-client/models/url_ssrf_request_full.rb +198 -0
  40. data/lib/cloudmersive-validate-api-client/models/url_ssrf_response_batch.rb +188 -0
  41. data/lib/cloudmersive-validate-api-client/models/url_ssrf_response_full.rb +196 -0
  42. data/lib/cloudmersive-validate-api-client/models/validate_url_response_syntax_only.rb +14 -4
  43. data/lib/cloudmersive-validate-api-client/version.rb +1 -1
  44. data/spec/api/domain_api_spec.rb +60 -0
  45. data/spec/api/ip_address_api_spec.rb +36 -0
  46. data/spec/api/text_input_api_spec.rb +26 -1
  47. data/spec/models/bot_check_response_spec.rb +41 -0
  48. data/spec/models/ip_intelligence_response_spec.rb +89 -0
  49. data/spec/models/ip_reverse_dns_lookup_response_spec.rb +47 -0
  50. data/spec/models/phishing_check_request_spec.rb +41 -0
  51. data/spec/models/phishing_check_response_spec.rb +47 -0
  52. data/spec/models/sql_injection_check_batch_request_spec.rb +47 -0
  53. data/spec/models/sql_injection_check_batch_response_spec.rb +41 -0
  54. data/spec/models/sql_injection_check_request_item_spec.rb +41 -0
  55. data/spec/models/sql_injection_detection_result_spec.rb +53 -0
  56. data/spec/models/url_safety_check_request_full_spec.rb +41 -0
  57. data/spec/models/url_safety_check_response_full_spec.rb +47 -0
  58. data/spec/models/url_ssrf_request_batch_spec.rb +41 -0
  59. data/spec/models/url_ssrf_request_full_spec.rb +47 -0
  60. data/spec/models/url_ssrf_response_batch_spec.rb +41 -0
  61. data/spec/models/url_ssrf_response_full_spec.rb +47 -0
  62. data/spec/models/validate_url_response_syntax_only_spec.rb +6 -0
  63. metadata +47 -2
@@ -21,11 +21,15 @@ module CloudmersiveValidateApiClient
21
21
  # Well-formed version of the URL
22
22
  attr_accessor :well_formed_url
23
23
 
24
+ # The top-level domain name of the URL, e.g. mydomain.com
25
+ attr_accessor :top_level_domain_name
26
+
24
27
  # Attribute mapping from ruby-style variable name to JSON key.
25
28
  def self.attribute_map
26
29
  {
27
30
  :'valid_url' => :'ValidURL',
28
- :'well_formed_url' => :'WellFormedURL'
31
+ :'well_formed_url' => :'WellFormedURL',
32
+ :'top_level_domain_name' => :'TopLevelDomainName'
29
33
  }
30
34
  end
31
35
 
@@ -33,7 +37,8 @@ module CloudmersiveValidateApiClient
33
37
  def self.swagger_types
34
38
  {
35
39
  :'valid_url' => :'BOOLEAN',
36
- :'well_formed_url' => :'String'
40
+ :'well_formed_url' => :'String',
41
+ :'top_level_domain_name' => :'String'
37
42
  }
38
43
  end
39
44
 
@@ -52,6 +57,10 @@ module CloudmersiveValidateApiClient
52
57
  if attributes.has_key?(:'WellFormedURL')
53
58
  self.well_formed_url = attributes[:'WellFormedURL']
54
59
  end
60
+
61
+ if attributes.has_key?(:'TopLevelDomainName')
62
+ self.top_level_domain_name = attributes[:'TopLevelDomainName']
63
+ end
55
64
  end
56
65
 
57
66
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -73,7 +82,8 @@ module CloudmersiveValidateApiClient
73
82
  return true if self.equal?(o)
74
83
  self.class == o.class &&
75
84
  valid_url == o.valid_url &&
76
- well_formed_url == o.well_formed_url
85
+ well_formed_url == o.well_formed_url &&
86
+ top_level_domain_name == o.top_level_domain_name
77
87
  end
78
88
 
79
89
  # @see the `==` method
@@ -85,7 +95,7 @@ module CloudmersiveValidateApiClient
85
95
  # Calculates hash code according to all attributes.
86
96
  # @return [Fixnum] Hash code
87
97
  def hash
88
- [valid_url, well_formed_url].hash
98
+ [valid_url, well_formed_url, top_level_domain_name].hash
89
99
  end
90
100
 
91
101
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module CloudmersiveValidateApiClient
14
- VERSION = '2.1.3'
14
+ VERSION = '2.1.9'
15
15
  end
@@ -44,6 +44,30 @@ describe 'DomainApi' do
44
44
  end
45
45
  end
46
46
 
47
+ # unit tests for domain_get_top_level_domain_from_url
48
+ # Get top-level domain name from URL
49
+ # Gets the top-level domain name from a URL, such as mydomain.com.
50
+ # @param request Input URL information
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [ValidateUrlResponseSyntaxOnly]
53
+ describe 'domain_get_top_level_domain_from_url 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 domain_phishing_check
60
+ # Check a URL for Phishing threats
61
+ # Checks if an input URL is at risk of being an Phishing (fake login page, or other page designed to collect information via social engineering) threat or attack.
62
+ # @param request Input URL request
63
+ # @param [Hash] opts the optional parameters
64
+ # @return [PhishingCheckResponse]
65
+ describe 'domain_phishing_check 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
+
47
71
  # unit tests for domain_post
48
72
  # Get WHOIS information for a domain
49
73
  # Validate whether a domain name exists, and also return the full WHOIS record for that domain name. WHOIS records include all the registration details of the domain name, such as information about the domain's owners.
@@ -68,6 +92,42 @@ describe 'DomainApi' do
68
92
  end
69
93
  end
70
94
 
95
+ # unit tests for domain_safety_check
96
+ # Check a URL for safety threats
97
+ # Checks if an input URL is at risk of being a safety threat through malware, unwanted software, or social engineering threats.
98
+ # @param request Input URL request
99
+ # @param [Hash] opts the optional parameters
100
+ # @return [UrlSafetyCheckResponseFull]
101
+ describe 'domain_safety_check test' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ # unit tests for domain_ssrf_check
108
+ # Check a URL for SSRF threats
109
+ # Checks if an input URL is at risk of being an SSRF (Server-side request forgery) threat or attack.
110
+ # @param request Input URL request
111
+ # @param [Hash] opts the optional parameters
112
+ # @return [UrlSsrfResponseFull]
113
+ describe 'domain_ssrf_check test' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ # unit tests for domain_ssrf_check_batch
120
+ # Check a URL for SSRF threats in batches
121
+ # Batch-checks if input URLs are at risk of being an SSRF (Server-side request forgery) threat or attack.
122
+ # @param request Input URL request as a batch of multiple URLs
123
+ # @param [Hash] opts the optional parameters
124
+ # @return [UrlSsrfResponseBatch]
125
+ describe 'domain_ssrf_check_batch test' do
126
+ it 'should work' do
127
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
+ end
129
+ end
130
+
71
131
  # unit tests for domain_url_full
72
132
  # Validate a URL fully
73
133
  # Validate whether a URL is syntactically valid (does not check endpoint for validity), whether it exists, and whether the endpoint is up and passes virus scan checks. Accepts various types of input and produces a well-formed URL as output.
@@ -44,6 +44,30 @@ describe 'IPAddressApi' do
44
44
  end
45
45
  end
46
46
 
47
+ # unit tests for i_p_address_ip_intelligence
48
+ # Get intelligence on an IP address
49
+ # Identify key intelligence about an IP address, including if it is a known threat IP, known bot, Tor exit node, as well as the location of the IP address.
50
+ # @param value IP address to process, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [IPIntelligenceResponse]
53
+ describe 'i_p_address_ip_intelligence 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 i_p_address_is_bot
60
+ # Check if IP address is a Bot client
61
+ # Check if the input IP address is a Bot, robot, or otherwise a non-user entity. Leverages real-time signals to check against known high-probability bots..
62
+ # @param value IP address to check, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
63
+ # @param [Hash] opts the optional parameters
64
+ # @return [BotCheckResponse]
65
+ describe 'i_p_address_is_bot 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
+
47
71
  # unit tests for i_p_address_is_threat
48
72
  # Check if IP address is a known threat
49
73
  # Check if the input IP address is a known threat IP address. Checks against known bad IPs, botnets, compromised servers, and other lists of threats.
@@ -80,4 +104,16 @@ describe 'IPAddressApi' do
80
104
  end
81
105
  end
82
106
 
107
+ # unit tests for i_p_address_reverse_domain_lookup
108
+ # Perform a reverse domain name (DNS) lookup on an IP address
109
+ # Gets the domain name, if any, associated with the IP address.
110
+ # @param value IP address to check, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
111
+ # @param [Hash] opts the optional parameters
112
+ # @return [IPReverseDNSLookupResponse]
113
+ describe 'i_p_address_reverse_domain_lookup test' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
83
119
  end
@@ -32,6 +32,31 @@ describe 'TextInputApi' do
32
32
  end
33
33
  end
34
34
 
35
+ # unit tests for text_input_check_sql_injection
36
+ # Check text input for SQL Injection (SQLI) attacks
37
+ # Detects SQL Injection (SQLI) attacks from text input.
38
+ # @param value User-facing text input.
39
+ # @param [Hash] opts the optional parameters
40
+ # @option opts [String] :detection_level Set to Normal to target a high-security SQL Injection detection level with a very low false positive rate; select High to target a very-high security SQL Injection detection level with higher false positives. Default is Normal (recommended).
41
+ # @return [SqlInjectionDetectionResult]
42
+ describe 'text_input_check_sql_injection 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 text_input_check_sql_injection_batch
49
+ # Check and protect multiple text inputs for SQL Injection (SQLI) attacks in batch
50
+ # Detects SQL Injection (SQLI) attacks from multiple text inputs. Output preverses order of input items.
51
+ # @param value User-facing text input.
52
+ # @param [Hash] opts the optional parameters
53
+ # @return [SqlInjectionCheckBatchResponse]
54
+ describe 'text_input_check_sql_injection_batch test' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
57
+ end
58
+ end
59
+
35
60
  # unit tests for text_input_check_xss
36
61
  # Check text input for Cross-Site-Scripting (XSS) attacks
37
62
  # Detects XSS (Cross-Site-Scripting) attacks from text input.
@@ -46,7 +71,7 @@ describe 'TextInputApi' do
46
71
 
47
72
  # unit tests for text_input_check_xss_batch
48
73
  # Check and protect multiple text inputs for Cross-Site-Scripting (XSS) attacks in batch
49
- # Detects XSS (Cross-Site-Scripting) attacks from multiple text input. Output preverses order of input items.
74
+ # Detects XSS (Cross-Site-Scripting) attacks from multiple text inputs. Output preverses order of input items.
50
75
  # @param value User-facing text input.
51
76
  # @param [Hash] opts the optional parameters
52
77
  # @return [XssProtectionBatchResponse]
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::BotCheckResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'BotCheckResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::BotCheckResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of BotCheckResponse' do
31
+ it 'should create an instance of BotCheckResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::BotCheckResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "is_bot"' 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
+ end
@@ -0,0 +1,89 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::IPIntelligenceResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'IPIntelligenceResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::IPIntelligenceResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IPIntelligenceResponse' do
31
+ it 'should create an instance of IPIntelligenceResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::IPIntelligenceResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "is_bot"' 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 "is_tor_node"' 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 "is_threat"' 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 "is_eu"' 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
+ describe 'test attribute "location"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "currency_code"' 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
+ describe 'test attribute "currency_name"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "region_area"' 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
+ describe 'test attribute "subregion_area"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::IPReverseDNSLookupResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'IPReverseDNSLookupResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::IPReverseDNSLookupResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IPReverseDNSLookupResponse' do
31
+ it 'should create an instance of IPReverseDNSLookupResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::IPReverseDNSLookupResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "successful"' 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 "host_name"' 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
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::PhishingCheckRequest
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'PhishingCheckRequest' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::PhishingCheckRequest.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PhishingCheckRequest' do
31
+ it 'should create an instance of PhishingCheckRequest' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::PhishingCheckRequest)
33
+ end
34
+ end
35
+ describe 'test attribute "url"' 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
+ end