summaryrefslogtreecommitdiff
path: root/spec/unit/application_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/application_spec.rb')
-rw-r--r--spec/unit/application_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/unit/application_spec.rb b/spec/unit/application_spec.rb
index 8b2d0cb114..a342fbd8bf 100644
--- a/spec/unit/application_spec.rb
+++ b/spec/unit/application_spec.rb
@@ -127,9 +127,9 @@ describe Chef::Application do
# force let binding to get evaluated or else we stub Pathname.new before we try to use it.
config_location_pathname
allow(Pathname).to receive(:new).with(config_location).and_return(config_location_pathname)
- expect(File).to receive(:read).
- with(config_location).
- and_return(config_content)
+ expect(File).to receive(:read)
+ .with(config_location)
+ .and_return(config_content)
end
it "should configure chef::config from a file" do
@@ -393,11 +393,11 @@ describe Chef::Application do
def raises_informative_fatals_on_configure_chef
config_file_regexp = Regexp.new @app.config[:config_file]
- expect(Chef::Log).to receive(:fatal).
- with(/Configuration error/)
- expect(Chef::Log).to receive(:fatal).
- with(config_file_regexp).
- at_least(1).times
+ expect(Chef::Log).to receive(:fatal)
+ .with(/Configuration error/)
+ expect(Chef::Log).to receive(:fatal)
+ .with(config_file_regexp)
+ .at_least(1).times
@app.configure_chef
end