summaryrefslogtreecommitdiff
path: root/spec/functions
diff options
context:
space:
mode:
authorTP Honey <tphoney@users.noreply.github.com>2015-05-06 13:55:22 +0100
committerTP Honey <tphoney@users.noreply.github.com>2015-05-06 13:55:22 +0100
commit4f6c6fa3e5ebb26589f4504470ad30ea9304977f (patch)
tree21d0171d3ff1b81467f8a9b1f78d37150d142c62 /spec/functions
parentcf251303be2e89619e0b99f01fb90ed5e676dfa2 (diff)
parentf49eb6b8e20a8517916d984d1606daaabbba9a23 (diff)
Merge pull request #448 from DavidS/fix_range
range(): fix TypeError(can't convert nil into Integer) when using range ...
Diffstat (limited to 'spec/functions')
-rwxr-xr-xspec/functions/range_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/functions/range_spec.rb b/spec/functions/range_spec.rb
index ef86f97..f18b89e 100755
--- a/spec/functions/range_spec.rb
+++ b/spec/functions/range_spec.rb
@@ -68,6 +68,13 @@ describe "the range function" do
end
end
+ describe 'with a ruby-like range' do
+ it "returns a number range" do
+ result = scope.function_range(["1..4"])
+ expect(result).to eq [1,2,3,4]
+ end
+ end
+
describe 'with a numeric range' do
it "returns a range of numbers" do
expected = (1..10).to_a