2018-11-09 18:20:30 +00:00
|
|
|
# Example that always fails.
|
|
|
|
class FailingExample < Spectator::RunnableExample
|
|
|
|
# Dummy description.
|
|
|
|
def what
|
|
|
|
"FAIL"
|
|
|
|
end
|
|
|
|
|
2019-02-17 19:40:16 +00:00
|
|
|
# Dummy source.
|
|
|
|
def source
|
|
|
|
::Spectator::Source.new(__FILE__, __LINE__)
|
2019-02-14 22:41:59 +00:00
|
|
|
end
|
|
|
|
|
2019-02-17 23:39:23 +00:00
|
|
|
# Dummy symbolic flag.
|
|
|
|
def symbolic?
|
|
|
|
false
|
|
|
|
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.
|
2019-04-23 00:22:12 +00:00
|
|
|
def self.create(hooks = Spectator::ExampleHooks.empty, conditions = Spectator::ExampleConditions.empty)
|
2019-01-11 17:09:40 +00:00
|
|
|
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
|
2019-04-23 01:12:45 +00:00
|
|
|
|
|
|
|
# Creates a group of failing examples.
|
|
|
|
def self.create_group(count = 5, hooks = Spectator::ExampleHooks.empty, conditions = Spectator::ExampleConditions.empty)
|
|
|
|
values = Spectator::Internals::SampleValues.empty
|
|
|
|
Spectator::RootExampleGroup.new(hooks, conditions).tap do |group|
|
|
|
|
group.children = Array.new(count) { new(group, values).as(Spectator::ExampleComponent) }
|
|
|
|
end
|
|
|
|
end
|
2018-11-09 18:20:30 +00:00
|
|
|
end
|