Sha256: a25f7e0c3d178525bf0edac744a775576219fce87e5ac8649f3db230f6fb51d7
Contents?: true
Size: 503 Bytes
Versions: 4
Compression:
Stored size: 503 Bytes
Contents
require 'acceptance_spec_helper' feature "Run explicit command on remote host" do scenario "Run explicit command on remote" do create_config <<-CONFIG project :slots do environment :staging do server do host "1.2.3.4" end end end CONFIG run "taketo --dry-run --command 'TERM=xterm-256color bash'" exit_status.should be_success stdout.should == %Q{ssh -t 1.2.3.4 "RAILS_ENV=staging TERM=xterm-256color bash"} end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
taketo-0.1.3 | spec/acceptance/command_spec.rb |
taketo-0.1.2 | spec/acceptance/command_spec.rb |
taketo-0.1.1 | spec/acceptance/command_spec.rb |
taketo-0.1.0 | spec/acceptance/command_spec.rb |