mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add example for producing errors
This commit is contained in:
parent
712aa99fed
commit
06230f128d
1 changed files with 22 additions and 0 deletions
22
spec/helpers/errored_example.cr
Normal file
22
spec/helpers/errored_example.cr
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# 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
|
Loading…
Reference in a new issue