Sha256: aa409d0590fe3b2f5f4421d3442affa8ff51d4fb025f1f68b0a7344fe1095471
Contents?: true
Size: 358 Bytes
Versions: 2
Compression:
Stored size: 358 Bytes
Contents
require 'spec_helper' describe Conjur::Deputy, api: :dummy do subject { Conjur::Deputy.new 'http://example.com/deputies/my/hostname', nil } its(:resource) { should be } its(:login) { should == 'deputy/my/hostname' } let(:api_key) { 'theapikey' } before { subject.attributes = { 'api_key' => api_key } } its(:api_key) { should == api_key } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
conjur-api-4.4.1 | spec/lib/deputy_spec.rb |
conjur-api-4.4.0 | spec/lib/deputy_spec.rb |