spec/rest/conference_spec.rb in twilio-ruby-3.7.1 vs spec/rest/conference_spec.rb in twilio-ruby-3.8.0

- old
+ new

@@ -1,9 +1,9 @@ require 'spec_helper' describe Twilio::REST::Conference do it 'should set up a participants resources object' do - call = Twilio::REST::Conference.new('someUri', 'someClient') - call.respond_to?(:participants).should == true - call.participants.instance_variable_get('@uri').should == 'someUri/Participants' + conference = Twilio::REST::Conference.new('someUri', 'someClient') + conference.respond_to?(:participants).should == true + conference.participants.instance_variable_get('@uri').should == 'someUri/Participants' end -end \ No newline at end of file +end