shard-spectator/src/spectator/example.cr

10 lines
130 B
Crystal
Raw Normal View History

2018-08-19 07:15:32 +00:00
module Spectator
abstract class Example
macro is_expected
expect(subject)
end
abstract def run
2018-08-19 07:15:32 +00:00
end
end