shard-spectator/src/spectator.cr

19 lines
352 B
Crystal
Raw Normal View History

2018-08-19 07:15:32 +00:00
require "./spectator/*"
2018-08-18 21:33:20 +00:00
# TODO: Write documentation for `Spectator`
module Spectator
VERSION = "0.1.0"
2018-08-23 22:24:03 +00:00
macro describe(what, source_file = __FILE__, source_line = __LINE__, &block)
module Spectator
module Examples
2018-09-08 00:20:54 +00:00
DSL.describe({{what}}) {{block}}
2018-08-23 22:24:03 +00:00
end
end
2018-08-19 07:15:32 +00:00
end
at_exit do
Runner.new(Context::ROOT).run
2018-08-19 07:15:32 +00:00
end
2018-08-18 21:33:20 +00:00
end