Files
RubyMotion/test/helpers/runloop_yield.rb
2013-12-13 11:50:34 +01:00

16 lines
290 B
Ruby

class RunloopYield
def initialize(&b)
@b = b
run
end
def run
performSelectorOnMainThread(:'test_start', withObject:nil, waitUntilDone:false)
NSRunLoop.currentRunLoop.runUntilDate(NSDate.dateWithTimeIntervalSinceNow(0.1))
end
def test_start
@b.call
end
end