Sha256: 426eac08fd41b4def4826952dd72c4143a3b88b12781373ddfdd7e085dd9be17
Contents?: true
Size: 732 Bytes
Versions: 17
Compression:
Stored size: 732 Bytes
Contents
require 'spec_helper' include Serverspec::Helper::Gentoo describe interface('eth0') do let(:stdout) { '1000' } its(:speed) { should eq 1000 } its(:command) { should eq "ethtool eth0 | grep Speed | gawk '{print gensub(/Speed: ([0-9]+)Mb\\/s/,\"\\\\1\",\"\")}'" } end describe interface('eth0') do it { should have_ipv4_address("192.168.10.10") } its(:command) { should eq "ip addr show eth0 | grep 'inet 192\\.168\\.10\\.10/'" } end describe interface('eth0') do it { should have_ipv4_address("192.168.10.10/24") } its(:command) { should eq "ip addr show eth0 | grep 'inet 192\\.168\\.10\\.10/24 '" } end describe interface('invalid-interface') do let(:stdout) { '1000' } its(:speed) { should_not eq 100 } end
Version data entries
17 entries across 17 versions & 1 rubygems