summaryrefslogtreecommitdiff
path: root/spec/mixlib
diff options
context:
space:
mode:
authorChristopher Brown <cb@opscode.com>2009-12-11 15:09:59 -0800
committerChristopher Brown <cb@opscode.com>2009-12-11 15:09:59 -0800
commit1c18b2b2badc4de2f5c13b55759aae3399551dc5 (patch)
treecc71b87564abe620443ef7a9686c11ad7d0e640c /spec/mixlib
parente0bb871736e8e517547fd0f79c6597078608b6d6 (diff)
downloadmixlib-log-1c18b2b2badc4de2f5c13b55759aae3399551dc5.tar.gz
fix log level setting
Diffstat (limited to 'spec/mixlib')
-rw-r--r--spec/mixlib/log_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/mixlib/log_spec.rb b/spec/mixlib/log_spec.rb
index 259ae36..2c90b08 100644
--- a/spec/mixlib/log_spec.rb
+++ b/spec/mixlib/log_spec.rb
@@ -43,17 +43,17 @@ describe Mixlib::Log do
:fatal => Logger::FATAL
}
levels.each do |symbol, constant|
- Logit.level(symbol)
+ Logit.level = symbol
Logit.logger.level.should == constant
end
end
it "should raise an ArgumentError if you try and set the level to something strange" do
- lambda { Logit.level(:the_roots) }.should raise_error(ArgumentError)
+ lambda { Logit.level = :the_roots }.should raise_error(ArgumentError)
end
it "should pass other method calls directly to logger" do
- Logit.level(:debug)
+ Logit.level = :debug
Logit.should be_debug
lambda { Logit.debug("Gimme some sugar!") }.should_not raise_error
end