mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
23 lines
568 B
Crystal
23 lines
568 B
Crystal
|
# Example that always raises an exception.
|
||
|
class ErroredExample < Spectator::RunnableExample
|
||
|
# Dummy description.
|
||
|
def what
|
||
|
"ERROR"
|
||
|
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
|