lib/calabash/interactions.rb in calabash-1.9.9.pre2 vs lib/calabash/interactions.rb in calabash-1.9.9.pre3

- old
+ new

@@ -1,6 +1,7 @@ module Calabash + # @!visibility private module Interactions # @todo Needs docs! def query(query, *args) Calabash::Device.default.map_route(Query.new(query), :query, *args) end @@ -87,10 +88,10 @@ # @example # # Android # backdoor('calabashBackdoor', 'first argument', 2) # # @param [String] name The selector/method name. - # @param [Object] *arguments A comma separated list of arguments to be + # @param [Object] arguments A comma separated list of arguments to be # passed to the backdoor selector/method. # @return [Object] the result of performing the selector/method with the # arguments (serialized) def backdoor(name, *arguments) Device.default.backdoor(name, *arguments)