From: Erik Dalén Date: Wed, 12 Nov 2014 15:52:36 +0000 (+0100) Subject: Add range tests for numeric with step and mixed arguments X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=af0a2779cb63b09a07f675ede3ae0b959c7442f6;p=puppet-stdlib.git Add range tests for numeric with step and mixed arguments --- diff --git a/spec/functions/range_spec.rb b/spec/functions/range_spec.rb index 1446b24..ef86f97 100755 --- a/spec/functions/range_spec.rb +++ b/spec/functions/range_spec.rb @@ -73,5 +73,14 @@ describe "the range function" do expected = (1..10).to_a expect(scope.function_range([1,10])).to eq expected end + it "returns a range of numbers with step parameter" do + expected = (1..10).step(2).to_a + expect(scope.function_range([1,10,2])).to eq expected + end + it "works with mixed numeric like strings and numeric arguments" do + expected = (1..10).to_a + expect(scope.function_range(['1',10])).to eq expected + expect(scope.function_range([1,'10'])).to eq expected + end end end