spec/pushpop/step_spec.rb in pushpop-0.1.0 vs spec/pushpop/step_spec.rb in pushpop-0.1.1
- old
+ new
@@ -22,12 +22,12 @@
step.block.should == empty_proc
end
it 'should set name to plugin name if not given' do
empty_proc = Proc.new {}
- step = Pushpop::Step.new(nil, 'keen', &empty_proc)
- step.name.should == 'keen'
- step.plugin.should == 'keen'
+ step = Pushpop::Step.new(nil, 'whee', &empty_proc)
+ step.name.should == 'whee'
+ step.plugin.should == 'whee'
step.block.should == empty_proc
end
it 'should not require a plugin' do
empty_proc = Proc.new {}