diff options
Diffstat (limited to 'spec/unit/application/client_spec.rb')
-rw-r--r-- | spec/unit/application/client_spec.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/unit/application/client_spec.rb b/spec/unit/application/client_spec.rb index 727536f1f8..6ff9597b53 100644 --- a/spec/unit/application/client_spec.rb +++ b/spec/unit/application/client_spec.rb @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -require 'spec_helper' +require "spec_helper" describe Chef::Application::Client, "reconfigure" do let(:app) do @@ -42,8 +42,8 @@ describe Chef::Application::Client, "reconfigure" do ARGV.replace(@original_argv) end - describe 'parse cli_arguments' do - it 'should call set_specific_recipes' do + describe "parse cli_arguments" do + it "should call set_specific_recipes" do expect(app).to receive(:set_specific_recipes).and_return(true) app.reconfigure end @@ -310,9 +310,9 @@ describe Chef::Application::Client, "run_application", :unix_only do @client = Chef::Client.new allow(Chef::Client).to receive(:new).and_return(@client) allow(@client).to receive(:run) do - @pipe[1].puts 'started' + @pipe[1].puts "started" sleep 1 - @pipe[1].puts 'finished' + @pipe[1].puts "finished" end end |