lib/symbiont/enclosers.rb in symbiont-0.1.1 vs lib/symbiont/enclosers.rb in symbiont-0.1.2

- old
+ new

@@ -37,7 +37,19 @@ # end def wait_for(timeout=10, message=nil, &block) @platform.wait_for(timeout, message, &block) end + def will_alert(&block) + @platform.will_alert(&block) + end + + def will_confirm(response, &block) + @platform.will_confirm(response, &block) + end + + def will_prompt(response, &block) + @platform.will_prompt(response, &block) + end + end # module: Enclosers end # module: Symbiont