Sha256: f42aa23cecdfdac3336f3979f07de4fc9f958e08062165af388a14a43352af74

Contents?: true

Size: 373 Bytes

Versions: 3

Compression:

Stored size: 373 Bytes

Contents

describe command('uname -a') do
  its(:exit_status) { should eq 0 }
  its(:stderr) { should be_empty }
  its(:stdout) { should match(/^Linux kitchen-static-[0-9]+-[a-f0-9\-]+/) }
end

describe command("ip route get 1 | awk '{print $NF;exit}'") do
  its(:exit_status) { should eq 0 }
  its(:stderr) { should be_empty }
  its(:stdout) { should match(/^192.168.2.254$/) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-ovirt4-1.2.3 test/integration/singleton-static_network/network_spec.rb
vagrant-ovirt4-1.2.2 test/integration/singleton-static_network/network_spec.rb
vagrant-ovirt4-1.2.1 test/integration/singleton-static_network/network_spec.rb