Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
appointment_plus / spec / appointment_plus / client_spec.rb
Size: Mime:
require 'spec_helper'

RSpec.describe AppointmentPlus::Client do

  it 'should connect using the configured endpoint and api version' do
    client = AppointmentPlus::Client.new
    endpoint = URI.parse("#{client.endpoint}/")
    connection = client.send(:connection).build_url(nil).to_s
    expect(connection).to eq(endpoint.to_s)
  end

end