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.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/unit/application_spec.rb b/spec/unit/application_spec.rb
index 765287b7..e38ad827 100644
--- a/spec/unit/application_spec.rb
+++ b/spec/unit/application_spec.rb
@@ -24,12 +24,12 @@ RSpec.describe "Ohai::Application" do
let(:argv) { [] }
let(:app) { Ohai::Application.new }
- before(:each) do
+ before do
@original_argv = ARGV
ARGV.replace(argv)
end
- after(:each) do
+ after do
ARGV.replace(@original_argv)
end
@@ -41,7 +41,7 @@ RSpec.describe "Ohai::Application" do
context "when specified on the command line" do
let(:argv) { [ "-c", config_file ] }
- before(:each) do
+ before do
if windows?
expect(ChefConfig::WorkstationConfigLoader).to receive(:new)
.with("C:#{config_file}", Ohai::Log)
@@ -68,7 +68,7 @@ RSpec.describe "Ohai::Application" do
end
context "when a local workstation config exists" do
- before(:each) do
+ before do
expect(ChefConfig::WorkstationConfigLoader).to receive(:new)
.with(nil, Ohai::Log)
.and_return(config_loader)
@@ -86,7 +86,7 @@ RSpec.describe "Ohai::Application" do
let(:directory) { "/some/fantastic/plugins" }
it "does not generate deprecated config warnings for cli options" do
- expect(Ohai::Log).to_not receive(:warn)
+ expect(Ohai::Log).not_to receive(:warn)
.with(/Ohai::Config\[:directory\] is deprecated/)
app.configure_ohai
end