diff --git a/spec/lib/rufo/formatter_source_specs/align_chained_calls.rb.spec b/spec/lib/rufo/formatter_source_specs/align_chained_calls.rb.spec index 7b027761..b5931e2e 100644 --- a/spec/lib/rufo/formatter_source_specs/align_chained_calls.rb.spec +++ b/spec/lib/rufo/formatter_source_specs/align_chained_calls.rb.spec @@ -47,3 +47,18 @@ x.foo .bar { a.b } .baz +#~# ORIGINAL issue_49 +#~# PENDING +a do + b # + .w x(y) + .z +end + +#~# EXPECTED + +a do + b # + .w x(y) + .z +end