mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
11 lines
317 B
Crystal
11 lines
317 B
Crystal
|
require "./example_group"
|
||
|
|
||
|
module Spectator
|
||
|
class ExampleGroupIteration(T) < ExampleGroup
|
||
|
def initialize(@item : T, name : Label = nil, location : Location? = nil,
|
||
|
group : ExampleGroup? = nil, metadata : Metadata = Metadata.new)
|
||
|
super(name, location, group, metadata)
|
||
|
end
|
||
|
end
|
||
|
end
|