Sha256: f51eb5eda6d0a98495a8937a87ffb82724bd6baaf4dda65ba6358ee656f4754c

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

require 'spec_helper'
require 'cape/capistrano'
require 'cape/rake'

describe Cape::Capistrano do
  describe 'without specified attributes' do
    its(:rake) { should == Cape::Rake.new }
  end

  describe 'with specified attributes' do
    subject { described_class.new :rake => 'the specified value of #rake' }

    its(:rake) { should == 'the specified value of #rake' }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cape-1.7.0 spec/cape/capistrano_spec.rb
cape-1.6.2 spec/cape/capistrano_spec.rb
cape-1.6.1 spec/cape/capistrano_spec.rb