spec/rest/call_spec.rb in twilio-ruby-3.12.3 vs spec/rest/call_spec.rb in twilio-ruby-3.13.0

- old
+ new

@@ -6,13 +6,17 @@ @call = Twilio::REST::Call.new('someUri', 'someClient') end it 'sets up a recordings resources object' do expect(@call).to respond_to(:recordings) - expect(@call.recordings.instance_variable_get('@path')).to eq('someUri/Recordings') + expect(@call.recordings.instance_variable_get('@path')).to eq( + 'someUri/Recordings' + ) end it 'sets up a notifications resources object' do expect(@call).to respond_to(:notifications) - expect(@call.notifications.instance_variable_get('@path')).to eq('someUri/Notifications') + expect(@call.notifications.instance_variable_get('@path')).to eq( + 'someUri/Notifications' + ) end end