mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
30a45a24d3
Examples and example groups now have a common ancestor.
13 lines
175 B
Crystal
13 lines
175 B
Crystal
require "./example_group"
|
|
|
|
module Spectator
|
|
class RootExampleGroup < ExampleGroup
|
|
def what : String
|
|
"ROOT"
|
|
end
|
|
|
|
def to_s(io)
|
|
# ...
|
|
end
|
|
end
|
|
end
|