mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
14 lines
218 B
Crystal
14 lines
218 B
Crystal
require "./example_result"
|
|
|
|
module Spectator
|
|
class FailedExampleResult < ExampleResult
|
|
getter error : Exception
|
|
|
|
def passed? : Bool
|
|
false
|
|
end
|
|
|
|
def initialize(@example, @error)
|
|
end
|
|
end
|
|
end
|