mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
18 lines
615 B
Crystal
18 lines
615 B
Crystal
require "./spec_helper"
|
|
|
|
describe Spectator::TestSuite do
|
|
describe "#each" do
|
|
it "yields each example" do
|
|
group = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
|
group.children = Array.new(5) do |index|
|
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty).as(Spectator::ExampleComponent)
|
|
end
|
|
test_suite = Spectator::TestSuite.new(group)
|
|
examples = [] of Spectator::Example
|
|
test_suite.each do |example|
|
|
examples << example
|
|
end
|
|
examples.should eq(group.children)
|
|
end
|
|
end
|
|
end
|