shard-spectator/src/spectator/mocks.cr

14 lines
233 B
Crystal
Raw Normal View History

2019-11-03 16:44:32 +00:00
require "./mocks/*"
module Spectator
# Functionality for mocking existing types.
module Mocks
2019-11-09 17:49:29 +00:00
def self.run(context : TestContext)
Registry.prepare(context)
yield
ensure
Registry.reset
end
2019-11-03 16:44:32 +00:00
end
end