Move helper methods and classes to their own directory

This commit is contained in:
Michael Miller 2018-11-09 11:20:30 -07:00
parent 0e1d87d8d4
commit 66dcc21383
5 changed files with 96 additions and 99 deletions

View 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