
This change updates additional parser functions we have to use teh puppet 4.x function api. This includes some basic unit tests to ensure they continue to function as expected. Change-Id: Iebeb82b2890216bed139219441718fffc4004391 Related-Bug: #1799786
7 lines
211 B
Ruby
7 lines
211 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'extract_id' do
|
|
it { should run.with_params('127.0.0.1', '127.0.0.1').and_return(1) }
|
|
it { should run.with_params(["127.0.0.1", "127.0.0.2"], "127.0.0.2").and_return(2) }
|
|
end
|