File: ssh_spec.rb

package info (click to toggle)
ruby-mina 0.3.7-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 444 kB
  • sloc: ruby: 1,630; makefile: 31
file content (14 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'
require 'command_helper'

describe "Invoking the 'mina' command in a project" do

  it "should build ssh command even with frozen String as a domain" do
    ENV['simulate'] = 'true'
    rake {
      set :domain, 'localhost'.freeze
      ssh("ls")
    }
  end

end