Sha256: 6abcac938b98eac14a46509b321ef0371bf6cb71cc6ad358ff05873dd83d190f

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

require File.join(File.dirname(__FILE__), '../../spec_helper')
require 'git_shizzle'

describe 'Checkout files by index' do

  let(:git) { GitShizzle::Git::Git.new(repo) }
  subject { GitShizzle::QuickGit.new(git) }

  context 'repository with modified files' do
    before (:each) do
      %w{ deleted modified }.each { |f| create f; stage f }
      `git commit --message Blah`

      delete 'deleted'
      modify 'modified'
      
      git.status[0].work_tree_status.should == :deleted
      git.status[1].work_tree_status.should == :modified
    end

    context 'when a modified file is checked out' do
      it 'should run git checkout' do
        git.stub(:command).and_call_original
        git.stub(:command).with(/checkout/, anything)

        expect(git).to receive(:command).with('checkout --', ['modified'])

        subject.checkout 2
      end
    end

    context 'when a deleted file is checked out' do
      it 'should run git checkout' do
        git.stub(:command).and_call_original
        git.stub(:command).with(/checkout/, anything)

        expect(git).to receive(:command).with('checkout --', ['deleted'])

        subject.checkout 1
      end
    end
  end

  context 'when the repository contains no modified files' do
    it 'should fail' do
      expect { subject.checkout 1 }.to raise_error
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git_shizzle-0.2.6 spec/git-shizzle/builtin_commands/checkout_spec.rb