Fix tests for above.

Set does not have a 'last' method.
This commit is contained in:
Jacques Distler 2011-08-05 09:06:44 -05:00
parent 14592f57f9
commit 47996ea1d3
2 changed files with 11 additions and 8 deletions

View file

@ -100,10 +100,12 @@ module ChunkMatch
# Test if requested parts are correct.
expected_chunk_state.each_pair do |a_method, expected_value|
assert content.chunks.last.kind_of?(chunk_type)
assert_respond_to(content.chunks.last, a_method)
assert_equal(expected_value, content.chunks.last.send(a_method.to_sym),
content.chunks.each do |c|
assert c.kind_of?(chunk_type)
assert_respond_to(c, a_method)
assert_equal(expected_value, c.send(a_method.to_sym),
"Wrong #{a_method} value")
end
end
end