mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Move helper methods and classes to their own directory
This commit is contained in:
parent
0e1d87d8d4
commit
66dcc21383
5 changed files with 96 additions and 99 deletions
22
spec/helpers/failing_example.cr
Normal file
22
spec/helpers/failing_example.cr
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Example that always fails.
|
||||
class FailingExample < Spectator::RunnableExample
|
||||
# Dummy description.
|
||||
def what
|
||||
"FAIL"
|
||||
end
|
||||
|
||||
# Run the example that always fails.
|
||||
private def run_instance
|
||||
report_results(0, 1)
|
||||
end
|
||||
|
||||
# Creates a failing 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…
Add table
Add a link
Reference in a new issue