* test/csv/test_row.rb: Added some missing tests in CSV.

* test/csv/test_table.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47406 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-09-05 09:34:38 +00:00
Родитель 192c39532b
Коммит 7e3b185a25
3 изменённых файлов: 23 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Sep 5 18:34:33 2014 Laurent Arnoud <laurent@spkdev.net>
* test/csv/test_row.rb: Added some missing tests in CSV.
* test/csv/test_table.rb: ditto.
Fri Sep 5 12:57:52 2014 Tanaka Akira <akr@fsij.org>
* process.c (has_privilege): Refine uid/gid check.

Просмотреть файл

@ -347,4 +347,9 @@ class TestCSV::Row < TestCSV
def test_can_be_compared_with_other_classes
assert_not_nil(CSV::Row.new([ ], [ ]), "The row was nil")
end
def test_can_be_compared_when_not_a_row
r = @row == []
assert_equal false, r
end
end

Просмотреть файл

@ -54,6 +54,11 @@ class TestCSV::Table < TestCSV
assert_equal(@rows.first.headers, @table.headers)
end
def test_headers_empty
t = CSV::Table.new([])
assert_equal Array.new, t.headers
end
def test_index
##################
### Mixed Mode ###
@ -190,6 +195,14 @@ class TestCSV::Table < TestCSV
assert_raise(TypeError) { @table["Extra"] = nil }
end
def test_set_by_col_with_header_row
r = [ CSV::Row.new(%w{X Y Z}, [97, 98, 99], true) ]
t = CSV::Table.new(r)
t.by_col!
t['A'] = [42]
assert_equal(['A'], t['A'])
end
def test_each
######################
### Mixed/Row Mode ###