Sha256: bbf93dcef7be6ede4b0d2fc897d4731d15784bd1ed83ad48da5c6240604a24b9
Contents?: true
Size: 476 Bytes
Versions: 393
Compression:
Stored size: 476 Bytes
Contents
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
Version data entries
393 entries across 393 versions & 3 rubygems