spec/commands/exec_spec.rb in tane-0.0.2 vs spec/commands/exec_spec.rb in tane-0.0.3
- old
+ new
@@ -5,10 +5,10 @@
describe ".process" do
it "should call exec to replace the current process with the arguments passed" do
args = ['foo', 'bar']
Tane::Commands::Exec.should_receive(:authenticate_user).and_return(true)
- Tane::Commands::Exec.should_receive(:bushido_envs).
+ Tane::Commands::Exec.should_receive(:cloudfuji_envs).
and_return({})
Tane::Commands::Exec.should_receive(:exec).with(args.join(' '))
Tane::Commands::Exec.process(args)
end