File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ module CaptureHelper
44
44
#
45
45
# @greeting # => "Welcome to my shiny new web page! The date and time is 2018-09-06 11:09:16 -0500"
46
46
#
47
- def capture ( *args , &block )
47
+ def capture ( *, ** , &block )
48
48
value = nil
49
49
@output_buffer ||= ActionView ::OutputBuffer . new
50
- buffer = @output_buffer . capture { value = yield ( *args ) }
50
+ buffer = @output_buffer . capture { value = yield ( *, ** ) }
51
51
52
52
string = if @output_buffer . equal? ( value )
53
53
buffer
Original file line number Diff line number Diff line change @@ -26,6 +26,13 @@ def test_capture_captures_the_value_returned_by_the_block_if_the_temporary_buffe
26
26
assert_equal "foobar" , string
27
27
end
28
28
29
+ def test_capture_with_keyword_arguments
30
+ string = @av . capture ( "foo" , b : "bar" ) do |a , b :|
31
+ a + b
32
+ end
33
+ assert_equal "foobar" , string
34
+ end
35
+
29
36
def test_capture_returns_nil_if_the_returned_value_is_not_a_string
30
37
assert_nil @av . capture { 1 }
31
38
end
You can’t perform that action at this time.
0 commit comments