mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
27 lines
618 B
Crystal
27 lines
618 B
Crystal
# Example that always raises an exception.
|
|
class ErroredExample < Spectator::RunnableExample
|
|
# Dummy description.
|
|
def what
|
|
"ERROR"
|
|
end
|
|
|
|
# Dummy instance.
|
|
def instance
|
|
nil
|
|
end
|
|
|
|
# Run the example that always produces an error.
|
|
private def run_instance
|
|
raise "Oops"
|
|
end
|
|
|
|
# Creates an errored example.
|
|
def self.create
|
|
hooks = Spectator::ExampleHooks.empty
|
|
group = Spectator::RootExampleGroup.new(hooks)
|
|
values = Spectator::Internals::SampleValues.empty
|
|
new(group, values).tap do |example|
|
|
group.children = [example.as(Spectator::ExampleComponent)]
|
|
end
|
|
end
|
|
end
|