From 0aa197c6f2740ba9ed5e543737965164a356781e Mon Sep 17 00:00:00 2001 From: zzak Date: Sun, 25 May 2014 16:41:40 +0000 Subject: * lib/csv.rb: Reject nil as data source for CSV.new, patch by @Peeja. [Fixes GH-580] https://github.com/ruby/ruby/pull/580 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_interface.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test') diff --git a/test/csv/test_interface.rb b/test/csv/test_interface.rb index 89b4a462f9..d6bf470f6b 100755 --- a/test/csv/test_interface.rb +++ b/test/csv/test_interface.rb @@ -130,6 +130,12 @@ class TestCSV::Interface < TestCSV end end + def test_nil_is_not_acceptable + assert_raise_with_message ArgumentError, "Cannot parse nil as CSV" do + CSV.new(nil) + end + end + ### Test Write Interface ### def test_generate -- cgit v1.2.3