1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
require 'spec_helper'
set :backend, :cmd
set :os, :family => 'windows'
describe host('127.0.0.1') do
it { should be_resolvable }
end
describe host('127.0.0.1') do
it { should be_resolvable.by('hosts') }
end
describe host('127.0.0.1') do
it { should be_resolvable.by('dns') }
end
describe host('127.0.0.1') do
it { should be_reachable }
end
describe host('127.0.0.1') do
it { should be_reachable.with(:proto => "icmp", :timeout=> 1) }
end
describe host('127.0.0.1') do
it { should be_reachable.with(:proto => "tcp", :port => 22, :timeout=> 1) }
end
describe host('127.0.0.1') do
it { should be_reachable.with(:proto => "udp", :port => 53, :timeout=> 1) }
end
|