require_relative './test_config' require 'helix_web_services_client' RSpec.describe 'HelixWebServicesClient login' do context '#login' do it 'should generate the same ticket' do client_as_jdoe do |c| ticket = c.login('jdoe', JDOE_PASSWORD) # for cloud testing it's random, so... expect(ticket).to eq(c.ticket) if !cloud_test? end end end end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#3 | 16040 | Doug Scheirer | I think the pending tests is at a minimum for cloud enabled, so readyto integrate up? | ||
#2 | 16026 | Doug Scheirer | Marked last few cloud tests pending, enabled test:cloud by default | ||
#1 | 15715 | Doug Scheirer | merge changes from main | ||
//guest/perforce_software/helix-web-services/main/source/helix_web_services_client/spec/login_spec.rb | |||||
#1 | 15698 | tjuricek |
Added a /helix_versioning_engine/v[api]/login method This is used by the Helix Sync client to differentiate the auth source of HWS from that of P4D (to be used for projects). |