Merge pull request #10993 from Empact/result-each-enumerator

Change Result#each to return an Enumerator when called without a block.
This commit is contained in:
Carlos Antonio da Silva 2013-06-25 20:07:59 -03:00
commit 755069ee4e
3 changed files with 42 additions and 1 deletions

View File

@ -1,3 +1,8 @@
* `ActiveRecord::Result.each` now returns an `Enumerator` when called without
a block, so that it can be chained with other `Enumerable` methods.
*Ben Woosley*
* Flatten merged join_values before building the joins.
While joining_values special treatment is given to string values.

View File

@ -18,7 +18,11 @@ module ActiveRecord
end
def each
hash_rows.each { |row| yield row }
if block_given?
hash_rows.each { |row| yield row }
else
hash_rows.to_enum
end
end
def to_hash

View File

@ -0,0 +1,32 @@
require "cases/helper"
module ActiveRecord
class ResultTest < ActiveRecord::TestCase
def result
Result.new(['col_1', 'col_2'], [
['row 1 col 1', 'row 1 col 2'],
['row 2 col 1', 'row 2 col 2']
])
end
def test_to_hash_returns_row_hashes
assert_equal [
{'col_1' => 'row 1 col 1', 'col_2' => 'row 1 col 2'},
{'col_1' => 'row 2 col 1', 'col_2' => 'row 2 col 2'}
], result.to_hash
end
def test_each_with_block_returns_row_hashes
result.each do |row|
assert_equal ['col_1', 'col_2'], row.keys
end
end
def test_each_without_block_returns_an_enumerator
result.each.with_index do |row, index|
assert_equal ['col_1', 'col_2'], row.keys
assert_kind_of Integer, index
end
end
end
end