shard-spectator/src/spectator/example_group_iteration.cr

11 lines
317 B
Crystal
Raw Normal View History

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