Module: RSpec::Mocks::ArgumentMatchers
- Included in:
- ExampleMethods
- Defined in:
- lib/rspec/mocks/argument_matchers.rb
Overview
ArgumentMatchers are placeholders that you can include in message expectations to match arguments against a broader check than simple equality.
With the exception of any_args
and no_args
, they all match against
the arg in same position in the argument list.
Instance Method Summary (collapse)
-
- (Object) any_args
Acts like an arg splat, matching any number of args at any point in an arg list.
-
- (Object) anything
Matches any argument at all.
-
- (Object) array_including(*args)
Matches an array that includes the specified items at least once.
-
- (Object) boolean
Matches a boolean value.
-
- (Object) duck_type(*args)
Matches if the actual argument responds to the specified messages.
-
- (Object) hash_excluding(*args)
(also: #hash_not_including)
Matches a hash that doesn't include the specified key(s) or key/value.
-
- (Object) hash_including(*args)
Matches a hash that includes the specified key(s) or key/value pairs.
-
- (Object) instance_of(klass)
(also: #an_instance_of)
Matches if
arg.instance_of?(klass)
. -
- (Object) kind_of(klass)
(also: #a_kind_of)
Matches if
arg.kind_of?(klass)
. -
- (Object) no_args
Matches no arguments.
Instance Method Details
- (Object) any_args
Acts like an arg splat, matching any number of args at any point in an arg list.
27 28 29 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 27 def any_args AnyArgsMatcher::INSTANCE end |
- (Object) anything
Matches any argument at all.
36 37 38 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 36 def anything AnyArgMatcher::INSTANCE end |
- (Object) array_including(*args)
Matches an array that includes the specified items at least once. Ignores duplicates and additional values
87 88 89 90 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 87 def array_including(*args) actually_an_array = Array === args.first && args.count == 1 ? args.first : args ArrayIncludingMatcher.new(actually_an_array) end |
- (Object) boolean
Matches a boolean value.
64 65 66 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 64 def boolean BooleanMatcher::INSTANCE end |
- (Object) duck_type(*args)
Matches if the actual argument responds to the specified messages.
55 56 57 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 55 def duck_type(*args) DuckTypeMatcher.new(*args) end |
- (Object) hash_excluding(*args) Also known as: hash_not_including
Matches a hash that doesn't include the specified key(s) or key/value.
99 100 101 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 99 def hash_excluding(*args) HashExcludingMatcher.new(ArgumentMatchers.anythingize_lonely_keys(*args)) end |
- (Object) hash_including(*args)
Matches a hash that includes the specified key(s) or key/value pairs. Ignores any additional keys.
76 77 78 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 76 def hash_including(*args) HashIncludingMatcher.new(ArgumentMatchers.anythingize_lonely_keys(*args)) end |
- (Object) instance_of(klass) Also known as: an_instance_of
Matches if arg.instance_of?(klass)
110 111 112 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 110 def instance_of(klass) InstanceOf.new(klass) end |
- (Object) kind_of(klass) Also known as: a_kind_of
Matches if arg.kind_of?(klass)
120 121 122 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 120 def kind_of(klass) KindOf.new(klass) end |
- (Object) no_args
Matches no arguments.
45 46 47 |
# File 'lib/rspec/mocks/argument_matchers.rb', line 45 def no_args NoArgsMatcher::INSTANCE end |