Sha256: 4664ea44eb0a0e8b0082ae8d53ca2baea101efe1eaf2b0960f35e5947687fc54
Contents?: true
Size: 572 Bytes
Versions: 12
Compression:
Stored size: 572 Bytes
Contents
require 'spec_helper' require 'git_helper' describe GitHelper::CheckoutDefault do let(:local_code) { double(:local_code, checkout_default: :done) } subject { GitHelper::CheckoutDefault.new } it 'should call GitHelper::LocalCode' do expect(GitHelper::LocalCode).to receive(:new).and_return(local_code) subject.execute end it 'should call the checkout_default method from the local code class' do allow(GitHelper::LocalCode).to receive(:new).and_return(local_code) expect(local_code).to receive(:checkout_default) subject.execute end end
Version data entries
12 entries across 12 versions & 1 rubygems