mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
A Cycle object should accept an array and cycle through it as it would
with a set of comma-separated objects.
This commit is contained in:
parent
93c74e1b4d
commit
1eaa521273
3 changed files with 24 additions and 1 deletions
|
@ -1,3 +1,19 @@
|
|||
* A Cycle object should accept an array and cycle through it as it would with a set of comma-separated objects.
|
||||
|
||||
arr = [1,2,3]
|
||||
cycle(arr) # => '1'
|
||||
cycle(arr) # => '2'
|
||||
cycle(arr) # => '3'
|
||||
|
||||
Previously, it would return the array as a string, because it took the array as a single object:
|
||||
|
||||
arr = [1,2,3]
|
||||
cycle(arr) # => '[1,2,3]'
|
||||
cycle(arr) # => '[1,2,3]'
|
||||
cycle(arr) # => '[1,2,3]'
|
||||
|
||||
*Kristian Freeman*
|
||||
|
||||
* Use `set_backtrace` instead of instance variable `@backtrace` in ActionView exceptions
|
||||
|
||||
*Shimpei Makimoto*
|
||||
|
|
|
@ -314,7 +314,7 @@ module ActionView
|
|||
options = values.extract_options!
|
||||
name = options.fetch(:name, 'default')
|
||||
|
||||
values.unshift(first_value)
|
||||
values.unshift(*first_value)
|
||||
|
||||
cycle = get_cycle(name)
|
||||
unless cycle && cycle.values == values
|
||||
|
|
|
@ -381,6 +381,13 @@ class TextHelperTest < ActionView::TestCase
|
|||
assert_equal("3", cycle("one", 2, "3"))
|
||||
end
|
||||
|
||||
def test_cycle_with_array
|
||||
array = [1, 2, 3]
|
||||
assert_equal("1", cycle(array))
|
||||
assert_equal("2", cycle(array))
|
||||
assert_equal("3", cycle(array))
|
||||
end
|
||||
|
||||
def test_cycle_with_no_arguments
|
||||
assert_raise(ArgumentError) { cycle }
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue