source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/has_ip_network_spec.rb@ 30960

Last change on this file since 30960 was 30960, checked in by davidb, 7 years ago

Switch to using Puppet to provision machine. Strongly based on files developed for spark-hdfs cluster

  • Property svn:executable set to *
File size: 756 bytes
Line 
1require 'spec_helper'
2
3describe 'has_ip_network' do
4 it { is_expected.not_to eq(nil) }
5 it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6 it { is_expected.to run.with_params("one", "two").and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
7
8 context "On Linux Systems" do
9 let(:facts) do
10 {
11 :interfaces => 'eth0,lo',
12 :network => :undefined,
13 :network_lo => '127.0.0.0',
14 :network_eth0 => '10.0.0.0',
15 }
16 end
17
18 it { is_expected.to run.with_params('127.0.0.0').and_return(true) }
19 it { is_expected.to run.with_params('10.0.0.0').and_return(true) }
20 it { is_expected.to run.with_params('8.8.8.0').and_return(false) }
21 end
22end
Note: See TracBrowser for help on using the repository browser.