2018-11-16 18:39:07 +00:00
|
|
|
require "./spec_helper"
|
|
|
|
|
|
|
|
def new_pending_result(example : Spectator::Example? = nil)
|
|
|
|
Spectator::PendingResult.new(example || FailingExample.create)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe Spectator::PendingResult do
|
2019-02-17 21:40:05 +00:00
|
|
|
describe "#call" do
|
2019-02-21 04:17:27 +00:00
|
|
|
context "without a block" do
|
|
|
|
it "invokes #pending on an instance" do
|
|
|
|
spy = ResultCallSpy.new
|
|
|
|
new_pending_result.call(spy)
|
|
|
|
spy.pending?.should be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the value of #pending" do
|
|
|
|
result = new_pending_result
|
|
|
|
returned = result.call(ResultCallSpy.new)
|
|
|
|
returned.should eq(:pending)
|
|
|
|
end
|
2019-02-17 21:40:05 +00:00
|
|
|
end
|
|
|
|
|
2019-02-21 04:17:27 +00:00
|
|
|
context "with a block" do
|
|
|
|
it "invokes #pending on an instance" do
|
|
|
|
spy = ResultCallSpy.new
|
|
|
|
new_pending_result.call(spy) { nil }
|
|
|
|
spy.pending?.should be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "yields itself" do
|
|
|
|
result = new_pending_result
|
|
|
|
value = nil.as(Spectator::Result?)
|
|
|
|
result.call(ResultCallSpy.new) { |r| value = r }
|
|
|
|
value.should eq(result)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the value of #pending" do
|
|
|
|
result = new_pending_result
|
|
|
|
value = 42
|
|
|
|
returned = result.call(ResultCallSpy.new) { value }
|
|
|
|
returned.should eq(value)
|
|
|
|
end
|
2019-02-17 21:40:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-16 18:39:07 +00:00
|
|
|
describe "#example" do
|
|
|
|
it "is the expected value" do
|
|
|
|
example = PassingExample.create
|
|
|
|
result = new_pending_result(example: example)
|
|
|
|
result.example.should eq(example)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|