Sha256: 773722552f98bf5bfd78c75e5c54990ff8d415357a46dd5f6251e440020a18c2

Contents?: true

Size: 554 Bytes

Versions: 12

Compression:

Stored size: 554 Bytes

Contents

require 'spec_helper'
require 'git_helper'

describe GitHelper::EmptyCommit do
  let(:local_code) { double(:local_code, empty_commit: :commit) }

  subject { GitHelper::EmptyCommit.new }

  it 'should call GitHelper::LocalCode' do
    expect(GitHelper::LocalCode).to receive(:new).and_return(local_code)
    subject.execute
  end

  it 'should call the empty_commit method from the local code class' do
    allow(GitHelper::LocalCode).to receive(:new).and_return(local_code)
    expect(local_code).to receive(:empty_commit)
    subject.execute
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
git_helper-3.3.1 spec/git_helper/empty_commit_spec.rb
git_helper-3.3.0 spec/git_helper/empty_commit_spec.rb
git_helper-3.2.2 spec/git_helper/empty_commit_spec.rb
git_helper-3.2.1 spec/git_helper/empty_commit_spec.rb
git_helper-3.2.0 spec/git_helper/empty_commit_spec.rb
git_helper-3.1.3 spec/git_helper/empty_commit_spec.rb
git_helper-3.1.2 spec/git_helper/empty_commit_spec.rb
git_helper-3.1.0 spec/git_helper/empty_commit_spec.rb
git_helper-3.0.1 spec/git_helper/empty_commit_spec.rb
git_helper-3.0.0 spec/git_helper/empty_commit_spec.rb
git_helper-2.0.2 spec/git_helper/empty_commit_spec.rb
git_helper-2.0.1 spec/git_helper/empty_commit_spec.rb