mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
1d530de5b1
Inspecting issue #2
44 lines
1.2 KiB
Crystal
44 lines
1.2 KiB
Crystal
# Example that always fails.
|
|
class FailingExample < Spectator::RunnableExample
|
|
# Dummy description.
|
|
def what
|
|
"FAIL"
|
|
end
|
|
|
|
# Dummy source.
|
|
def source
|
|
::Spectator::Source.new(__FILE__, __LINE__)
|
|
end
|
|
|
|
# Dummy symbolic flag.
|
|
def symbolic?
|
|
false
|
|
end
|
|
|
|
# Dummy instance.
|
|
def instance
|
|
nil
|
|
end
|
|
|
|
# Run the example that always fails.
|
|
private def run_instance
|
|
report_expectations(0, 1)
|
|
end
|
|
|
|
# Creates a failing example.
|
|
def self.create(hooks = Spectator::ExampleHooks.empty, conditions = Spectator::ExampleConditions.empty)
|
|
group = Spectator::RootExampleGroup.new(hooks, conditions)
|
|
values = Spectator::Internals::SampleValues.empty
|
|
new(group, values).tap do |example|
|
|
group.children = [example.as(Spectator::ExampleComponent)]
|
|
end
|
|
end
|
|
|
|
# Creates a group of failing examples.
|
|
def self.create_group(count = 5, hooks = Spectator::ExampleHooks.empty, conditions = Spectator::ExampleConditions.empty)
|
|
values = Spectator::Internals::SampleValues.empty
|
|
Spectator::RootExampleGroup.new(hooks, conditions).tap do |group|
|
|
group.children = Array.new(count) { new(group, values).as(Spectator::ExampleComponent) }
|
|
end
|
|
end
|
|
end
|