Sha256: 8141dbdde354376e9003e2c1acba81238a9171337df03f54f1362ebe12bad63f

Contents?: true

Size: 480 Bytes

Versions: 1

Compression:

Stored size: 480 Bytes

Contents

#!/usr/bin/env ruby

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

require 'facter'
require 'facter/util/ip'

describe "Per Interface IP facts" do
    it "should replace the ':' in an interface list with '_'" do
        # So we look supported
        Facter.fact(:kernel).stubs(:value).returns("SunOS")

        Facter::Util::IP.stubs(:get_interfaces).returns %w{eth0:1 eth1:2}
        Facter.fact(:interfaces).value.should == %{eth0_1,eth1_2}
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facter-1.6.0 spec/unit/interfaces_spec.rb