Sha256: 4ce1db550087d0e12e5200f2e735240cebcabbba3453f723fc75d85ee310bd14
Contents?: true
Size: 688 Bytes
Versions: 15
Compression:
Stored size: 688 Bytes
Contents
require 'spec_helper' describe Mina::Backend::Remote do let(:backend) { Mina::Backend::Remote.new ['ls -al'] } before { Mina::Configuration.instance.set(:domain, 'localhost') } after { Mina::Configuration.instance.remove(:domain) } describe '#prepare' do it 'escpaces shellwords' do expect(backend.prepare).to eq("ssh localhost -p 22 -tt -- \\[\\\"ls\\ -al\\\"\\]") end it 'adds debug if simualte' do Mina::Configuration.instance.set(:simulate, true) expect(backend.prepare).to eq("#!/usr/bin/env bash\n# Executing the following via 'ssh localhost -p 22 -tt':\n#\nls -al\n ") Mina::Configuration.instance.remove(:simulate) end end end
Version data entries
15 entries across 15 versions & 1 rubygems