summaryrefslogtreecommitdiff
path: root/spec/unit/config_spec.rb
diff options
context:
space:
mode:
authorJohn Keiser <jkeiser@opscode.com>2013-09-16 21:58:45 -0700
committerJohn Keiser <jkeiser@opscode.com>2013-09-16 21:58:45 -0700
commitc5012d8258dbd555b8691c5af34155b9308b8769 (patch)
treeb5f58b349860036f144e6e5b6757c9b353afd695 /spec/unit/config_spec.rb
parent2d13566644515193d84f32ac0f67f073ebf58587 (diff)
downloadchef-c5012d8258dbd555b8691c5af34155b9308b8769.tar.gz
Don't bother cleaning up Chef::Config after tests or initializing things to default values before
Diffstat (limited to 'spec/unit/config_spec.rb')
-rw-r--r--spec/unit/config_spec.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/unit/config_spec.rb b/spec/unit/config_spec.rb
index b4052f4908..3434e66b76 100644
--- a/spec/unit/config_spec.rb
+++ b/spec/unit/config_spec.rb
@@ -137,10 +137,6 @@ describe Chef::Config do
and_return(@mockfile)
end
- after do
- Chef::Config.log_location = STDOUT
- end
-
it "should configure itself to use a File object based upon the String" do
Chef::Config.log_location = "/var/log/chef/client.log"
Chef::Config.log_location.path.should == "/var/log/chef/client.log"