2018-11-14 19:55:21 +00:00
|
|
|
# Example that always succeeds.
|
|
|
|
class PassingExample < Spectator::RunnableExample
|
2019-02-18 00:03:57 +00:00
|
|
|
# Creates the example.
|
|
|
|
def initialize(group, values, @symbolic = false)
|
|
|
|
super(group, values)
|
|
|
|
end
|
|
|
|
|
2018-11-14 19:55:21 +00:00
|
|
|
# Dummy description.
|
2019-09-24 02:32:21 +00:00
|
|
|
def what : Symbol | String
|
2018-11-14 19:55:21 +00:00
|
|
|
"PASS"
|
|
|
|
end
|
|
|
|
|
2019-02-17 19:40:16 +00:00
|
|
|
# Dummy source.
|
2019-09-24 02:32:21 +00:00
|
|
|
def source : ::Spectator::Source
|
2019-02-17 19:40:16 +00:00
|
|
|
::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.
|
2019-09-24 02:32:21 +00:00
|
|
|
def symbolic? : Bool
|
2019-02-18 00:03:57 +00:00
|
|
|
@symbolic
|
2019-02-17 23:39:23 +00:00
|
|
|
end
|
|
|
|
|
2019-01-02 00:06:24 +00:00
|
|
|
# Dummy instance.
|
|
|
|
def instance
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2018-11-14 19:55:21 +00:00
|
|
|
# Run the example that always passes.
|
|
|
|
# If this doesn't something broke.
|
|
|
|
private def run_instance
|
|
|
|
report_expectations(1, 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Creates a passing 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-14 19:55:21 +00:00
|
|
|
values = Spectator::Internals::SampleValues.empty
|
|
|
|
new(group, values).tap do |example|
|
|
|
|
group.children = [example.as(Spectator::ExampleComponent)]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|