2018-11-09 18:20:30 +00:00
|
|
|
# Example that always fails.
|
|
|
|
class FailingExample < Spectator::RunnableExample
|
|
|
|
# Dummy description.
|
|
|
|
def what
|
|
|
|
"FAIL"
|
|
|
|
end
|
|
|
|
|
2019-01-02 00:06:24 +00:00
|
|
|
# Dummy instance.
|
|
|
|
def instance
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2018-11-09 18:20:30 +00:00
|
|
|
# Run the example that always fails.
|
|
|
|
private def run_instance
|
2018-11-14 09:15:55 +00:00
|
|
|
report_expectations(0, 1)
|
2018-11-09 18:20:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Creates a failing example.
|
|
|
|
def self.create
|
|
|
|
hooks = Spectator::ExampleHooks.empty
|
2019-01-11 17:09:40 +00:00
|
|
|
conditions = Spectator::ExampleConditions.empty
|
|
|
|
group = Spectator::RootExampleGroup.new(hooks, conditions)
|
2018-11-09 18:20:30 +00:00
|
|
|
values = Spectator::Internals::SampleValues.empty
|
|
|
|
new(group, values).tap do |example|
|
|
|
|
group.children = [example.as(Spectator::ExampleComponent)]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|