spec/cape/capistrano_spec.rb in cape-1.4.0 vs spec/cape/capistrano_spec.rb in cape-1.5.0
- old
+ new
@@ -5,12 +5,10 @@
describe 'without specified attributes' do
its(:rake) { should == Cape::Rake.new }
end
describe 'with specified attributes' do
- subject {
- described_class.new :rake => 'I see you have the machine that goes "Bing!"'
- }
+ subject { described_class.new :rake => 'the specified value of #rake' }
- its(:rake) { should == 'I see you have the machine that goes "Bing!"' }
+ its(:rake) { should == 'the specified value of #rake' }
end
end