Sha256: b64335de4c5f2a9ca9374b375142e14dc3ff51aa6ece41ee2a85247fa9d10d21
Contents?: true
Size: 490 Bytes
Versions: 3
Compression:
Stored size: 490 Bytes
Contents
describe VzaarApi do before do VzaarApi.auth_token = auth_token VzaarApi.client_id = client_id VzaarApi.hostname = hostname end let(:auth_token) { 'auth-token' } let(:client_id) { 'client-id' } let(:hostname) { 'app.vzaar.localhost' } specify { expect(VzaarApi.auth_token).to eq auth_token } specify { expect(VzaarApi.client_id).to eq client_id } specify { expect(VzaarApi.hostname).to eq hostname } specify { expect(VzaarApi.protocol).to eq 'https' } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vzaar_api-2.0.2 | spec/vzaar_api/vzaar_api_spec.rb |
vzaar_api-2.0.1 | spec/vzaar_api/vzaar_api_spec.rb |
vzaar_api-2.0.0 | spec/vzaar_api/vzaar_api_spec.rb |