Fix coding standards in shell command action spec

This commit is contained in:
Thibault Jouan 2013-08-10 14:46:31 +00:00
parent 8af6d0ec00
commit ec44d01c36

View File

@ -3,7 +3,7 @@ require 'spec_helper'
module Producer::Core
describe Actions::ShellCommand do
let(:env) { Env.new }
let(:command_args) { 'hello from remote host'}
let(:command_args) { 'hello from remote host' }
let(:command) { "echo #{command_args}" }
subject(:sh) { Actions::ShellCommand.new(env, command) }