Method: Calabash::Android::Operations::Device#push
- Defined in:
- lib/calabash-android/operations.rb
#push(local, remote) ⇒ Object
581 582 583 584 |
# File 'lib/calabash-android/operations.rb', line 581 def push(local, remote) cmd = "#{adb_command} push #{local} #{remote}" raise "Could not push #{local} to #{remote}" unless system(cmd) end |