shard-spectator/src/spectator/null_context.cr
2020-11-07 14:43:59 -07:00

6 lines
200 B
Crystal

module Spectator
# Empty context used to construct examples that don't have contexts.
# This is useful for dynamically creating examples outside of a spec.
class NullContext < Context
end
end