Sha256: 9f94a8587d20c8c389e8b1905ad231d89efcea13b46ab4518ba4c5f574515bec

Contents?: true

Size: 482 Bytes

Versions: 42

Compression:

Stored size: 482 Bytes

Contents

require 'spec_helper'

include SpecInfra::Helper::Plamo

describe default_gateway do
  let(:stdout) { "default via 192.168.1.1 dev eth1 \r\n" }

  its(:ipaddress) { should eq '192.168.1.1' }
  its(:command) { should eq "ip route | grep -E '^default |^default '" }

  its(:interface) { should eq 'eth1' }
  its(:command) { should eq "ip route | grep -E '^default |^default '" }

  its(:ipaddress) { should_not eq '192.168.1.2' }
  its(:interface) { should_not eq 'eth0'        }
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
serverspec-0.13.0 spec/plamo/default_gateway_spec.rb
serverspec-0.12.0 spec/plamo/default_gateway_spec.rb