Class: RSpec::Support::MethodSignatureExpectation Private
- Inherits:
-
Object
- Object
- RSpec::Support::MethodSignatureExpectation
- Defined in:
- lib/rspec/support/method_signature_verifier.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Encapsulates expectations about the number of arguments and allowed/required keyword args of a given method.
Instance Attribute Summary collapse
- #expect_arbitrary_keywords ⇒ Object private
- #expect_unlimited_arguments ⇒ Object private
- #keywords ⇒ Object private
- #max_count ⇒ Object private
- #min_count ⇒ Object private
Instance Method Summary collapse
- #empty? ⇒ Boolean private
-
#initialize ⇒ MethodSignatureExpectation
constructor
private
A new instance of MethodSignatureExpectation.
Constructor Details
#initialize ⇒ MethodSignatureExpectation
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of MethodSignatureExpectation.
213 214 215 216 217 218 219 220 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 213 def initialize @min_count = nil @max_count = nil @keywords = [] @expect_unlimited_arguments = false @expect_arbitrary_keywords = false end |
Instance Attribute Details
#expect_arbitrary_keywords ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
224 225 226 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 224 def expect_arbitrary_keywords @expect_arbitrary_keywords end |
#expect_unlimited_arguments ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
224 225 226 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 224 def expect_unlimited_arguments @expect_unlimited_arguments end |
#keywords ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
222 223 224 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 222 def keywords @keywords end |
#max_count ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
222 223 224 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 222 def max_count @max_count end |
#min_count ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
222 223 224 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 222 def min_count @min_count end |
Instance Method Details
#empty? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
240 241 242 243 244 245 |
# File 'lib/rspec/support/method_signature_verifier.rb', line 240 def empty? @min_count.nil? && @keywords.to_a.empty? && !@expect_arbitrary_keywords && !@expect_unlimited_arguments end |