Sha256: 97545e14c160cbac52287c6f268143b98d6918b41d4d2c881d65ae8f58964d6a

Contents?: true

Size: 943 Bytes

Versions: 4

Compression:

Stored size: 943 Bytes

Contents

include Rake
include Rake::Funnel::Support

describe Rake::Funnel::Tasks::Copy do
  before {
    Task.clear
  }

  describe 'defaults' do
    its(:name) { should == :copy }
    its(:source) { should eq([]) }
    its(:target) { should be_nil }
  end

  describe 'execution' do
    let(:source) { %w(one two) }
    let(:target) { 'target' }
    let(:finder) { instance_double(Finder).as_null_object }

    before {
      allow(finder).to receive(:all_or_default).and_return(source)
      allow(Finder).to receive(:new).and_return(finder)
    }

    before {
      allow(Copier).to receive(:copy)
    }

    subject {
      described_class.new do |t|
        t.source = source
        t.target = target
      end
    }

    before {
      Task[subject.name].invoke
    }

    it 'should delegate to Copier' do
      expect(Copier).to have_received(:copy).with(source, subject.target)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rake-funnel-0.3.2.pre spec/rake/funnel/tasks/copy_spec.rb
rake-funnel-0.3.1.pre spec/rake/funnel/tasks/copy_spec.rb
rake-funnel-0.3.0.pre spec/rake/funnel/tasks/copy_spec.rb
rake-funnel-0.2.0.pre spec/rake/funnel/tasks/copy_spec.rb