mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add tests for Result#call implementations
This commit is contained in:
parent
75f9a5838b
commit
6a8d447570
5 changed files with 70 additions and 0 deletions
|
@ -13,6 +13,21 @@ def new_successful_result(
|
|||
end
|
||||
|
||||
describe Spectator::SuccessfulResult do
|
||||
describe "#call" do
|
||||
it "invokes #success on an instance" do
|
||||
spy = ResultCallSpy.new
|
||||
new_successful_result.call(spy)
|
||||
spy.success?.should be_truthy
|
||||
end
|
||||
|
||||
it "passes itself" do
|
||||
spy = ResultCallSpy.new
|
||||
result = new_successful_result
|
||||
result.call(spy)
|
||||
spy.success.should eq(result)
|
||||
end
|
||||
end
|
||||
|
||||
describe "#example" do
|
||||
it "is the expected value" do
|
||||
example = PassingExample.create
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue