Sha256: 06c1926d3e8e5184353a5e024592b765360c5d1ed5f1a2766ec70dbb21528c27
Contents?: true
Size: 604 Bytes
Versions: 14
Compression:
Stored size: 604 Bytes
Contents
require 'spec_helper' describe AllscriptsUnityClient::ClientDriver do it_behaves_like 'a client driver' subject { build(:client_driver) } describe '#client_type' do it { expect(subject.client_type).to be(:none) } end describe '#magic' do it { expect { subject.magic }.to raise_error(NotImplementedError) } end describe '#get_security_token!' do it { expect { subject.get_security_token! }.to raise_error(NotImplementedError) } end describe '#retire_security_token!' do it { expect { subject.retire_security_token! }.to raise_error(NotImplementedError) } end end
Version data entries
14 entries across 14 versions & 1 rubygems