mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Update naming from partial to target
This commit is contained in:
parent
53f7c94e8a
commit
5692a77a1b
2 changed files with 3 additions and 2 deletions
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Fix usage of `be ===` and `be =~` [#34](https://github.com/icy-arctic-fox/spectator/issues/34)
|
- Fix usage of `be ===` and `be =~` [#34](https://github.com/icy-arctic-fox/spectator/issues/34)
|
||||||
- Better handling of the `be(nil)` when used with value types. [#37](https://github.com/icy-arctic-fox/spectator/issues/37)
|
- Better handling of the `be(nil)` when used with value types. [#37](https://github.com/icy-arctic-fox/spectator/issues/37)
|
||||||
- Fix missing arguments for stubbed top-level methods (`system`, `exit`, etc.). [#36](https://github.com/icy-arctic-fox/spectator/issues/36)
|
- Fix missing arguments for stubbed top-level methods (`system`, `exit`, etc.). [#36](https://github.com/icy-arctic-fox/spectator/issues/36)
|
||||||
|
- Fix outdated naming when using `expect_any_instance_of`.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Elegantly handle missing/undefined methods with `have_attributes` matcher.
|
- Elegantly handle missing/undefined methods with `have_attributes` matcher.
|
||||||
|
|
|
@ -10,8 +10,8 @@ module Spectator::Mocks
|
||||||
Harness.current.mocks.expect(T, stub)
|
Harness.current.mocks.expect(T, stub)
|
||||||
value = Value.new(stub.name, stub.to_s)
|
value = Value.new(stub.name, stub.to_s)
|
||||||
matcher = Matchers::ReceiveTypeMatcher.new(value, stub.arguments?)
|
matcher = Matchers::ReceiveTypeMatcher.new(value, stub.arguments?)
|
||||||
partial = Expectations::ExpectationPartial.new(actual, @location)
|
target = Expectation::Target.new(actual, @location)
|
||||||
partial.to_eventually(matcher)
|
target.to_eventually(matcher)
|
||||||
end
|
end
|
||||||
|
|
||||||
def to(stubs : Enumerable(MethodStub)) : Nil
|
def to(stubs : Enumerable(MethodStub)) : Nil
|
||||||
|
|
Loading…
Reference in a new issue