class Fluffle::Testing::ThreadPool
Fake thread pool that executes `#post`'ed blocks immediately in the current thread
Public Instance Methods
post(&block)
click to toggle source
# File lib/fluffle/testing.rb, line 51 def post(&block) block.call end