mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
73 lines
1.8 KiB
Crystal
73 lines
1.8 KiB
Crystal
require "./spec_helper"
|
|
|
|
def new_errored_result(
|
|
example : Spectator::Example? = nil,
|
|
elapsed : Time::Span? = nil,
|
|
expectations : Spectator::Expectations::ExampleExpectations? = nil,
|
|
error : Exception? = nil
|
|
)
|
|
Spectator::ErroredResult.new(
|
|
example || FailingExample.create,
|
|
elapsed || Time::Span.zero,
|
|
expectations || Spectator::Expectations::ExampleExpectations.new(generate_expectations(0, 1)[:expectations]),
|
|
error || Exception.new("foobar")
|
|
)
|
|
end
|
|
|
|
describe Spectator::ErroredResult do
|
|
describe "#errored?" do
|
|
it "is true" do
|
|
new_errored_result.errored?.should be_true
|
|
end
|
|
end
|
|
|
|
describe "#passed?" do
|
|
it "is false" do
|
|
new_errored_result.passed?.should be_false
|
|
end
|
|
end
|
|
|
|
describe "#failed?" do
|
|
it "is true" do
|
|
new_errored_result.failed?.should be_true
|
|
end
|
|
end
|
|
|
|
describe "#pending?" do
|
|
it "is false" do
|
|
new_errored_result.pending?.should be_false
|
|
end
|
|
end
|
|
|
|
describe "#example" do
|
|
it "is the expected value" do
|
|
example = FailingExample.create
|
|
result = new_errored_result(example: example)
|
|
result.example.should eq(example)
|
|
end
|
|
end
|
|
|
|
describe "#elapsed" do
|
|
it "is the expected value" do
|
|
elapsed = Time::Span.new(10, 10, 10)
|
|
result = new_errored_result(elapsed: elapsed)
|
|
result.elapsed.should eq(elapsed)
|
|
end
|
|
end
|
|
|
|
describe "#expectations" do
|
|
it "is the expected value" do
|
|
expectations = Spectator::Expectations::ExampleExpectations.new(generate_expectations(5, 1)[:expectations])
|
|
result = new_errored_result(expectations: expectations)
|
|
result.expectations.should eq(expectations)
|
|
end
|
|
end
|
|
|
|
describe "#error" do
|
|
it "is the expected value" do
|
|
error = IO::Error.new("oops")
|
|
result = new_errored_result(error: error)
|
|
result.error.should eq(error)
|
|
end
|
|
end
|
|
end
|