mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
43dc106c18
Addresses Crystal compiler warning about abstract method return types.
42 lines
1,005 B
Crystal
42 lines
1,005 B
Crystal
# Example that always succeeds.
|
|
class PassingExample < Spectator::RunnableExample
|
|
# Creates the example.
|
|
def initialize(group, values, @symbolic = false)
|
|
super(group, values)
|
|
end
|
|
|
|
# Dummy description.
|
|
def what : Symbol | String
|
|
"PASS"
|
|
end
|
|
|
|
# Dummy source.
|
|
def source : ::Spectator::Source
|
|
::Spectator::Source.new(__FILE__, __LINE__)
|
|
end
|
|
|
|
# Dummy symbolic flag.
|
|
def symbolic? : Bool
|
|
@symbolic
|
|
end
|
|
|
|
# Dummy instance.
|
|
def instance
|
|
nil
|
|
end
|
|
|
|
# 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.
|
|
def self.create(hooks = Spectator::ExampleHooks.empty, conditions = Spectator::ExampleConditions.empty)
|
|
group = Spectator::RootExampleGroup.new(hooks, conditions)
|
|
values = Spectator::Internals::SampleValues.empty
|
|
new(group, values).tap do |example|
|
|
group.children = [example.as(Spectator::ExampleComponent)]
|
|
end
|
|
end
|
|
end
|