Sha256: eb78e55466a8f6e0bab783833eb957a8a1ffbf14837818383ab6fc9a11dcbdda
Contents?: true
Size: 601 Bytes
Versions: 188
Compression:
Stored size: 601 Bytes
Contents
describe KnapsackPro::RepositoryAdapterInitiator do describe '.call' do subject { described_class.call } before do expect(KnapsackPro::Config::Env).to receive(:repository_adapter).and_return(repository_adapter) end context 'when repository adapter is git' do let(:repository_adapter) { 'git' } it { should be_instance_of KnapsackPro::RepositoryAdapters::GitAdapter } end context 'when default repository adapter' do let(:repository_adapter) { nil } it { should be_instance_of KnapsackPro::RepositoryAdapters::EnvAdapter } end end end
Version data entries
188 entries across 188 versions & 1 rubygems