File: set_spec.rb

package info (click to toggle)
ruby-specinfra 2.94.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,464 kB
  • sloc: ruby: 10,562; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe 'set method set value to Specinfra.configuration' do
  it 'set method handle string value correctly' do
    set :host, 'localhost'
    expect(Specinfra.configuration.host).to eq 'localhost'
  end

  it 'set method handle hash value correctly' do
    set :ssh_options, :password => 'password', :port => 2222
    ssh_options = { :password => 'password', :port => 2222 }
    expect(Specinfra.configuration.ssh_options).to eq ssh_options
  end
end