spec/ratis/request_spec.rb in ratis-3.3.3 vs spec/ratis/request_spec.rb in ratis-3.3.4

- old
+ new

@@ -2,19 +2,19 @@ describe Ratis::Request do before do Ratis.reset Ratis.configure do |config| - config.endpoint = 'http://soap.valleymetro.org/cgi-bin-soap-web-252/soap.cgi' + config.endpoint = 'http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi' config.namespace = 'PX_WEB' end end context 'new Requests get config from Ratis.configure block' do it 'gets config from initializing' do pending - Ratis::Request.client.wsdl.endpoint.should eql('http://soap.valleymetro.org/cgi-bin-soap-web-252/soap.cgi') + Ratis::Request.client.wsdl.endpoint.should eql('http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi') Ratis::Request.client.wsdl.namespace.should eql('PX_WEB') end end context 'configured incorrectly' do @@ -35,10 +35,10 @@ describe Ratis::Request do describe '#get' do before do Ratis.reset Ratis.configure do |config| - config.endpoint = 'http://soap.valleymetro.org/cgi-bin-soap-web-252/soap.cgi' + config.endpoint = 'http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi' config.namespace = 'PX_WEB' end end describe 'with no parameters' do