summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2015-05-07 07:27:39 -0700
committerJay Mundrawala <jdmundrawala@gmail.com>2015-05-07 07:27:39 -0700
commitd7944227b284b6b75d638d1a2a4ea917857c3f4c (patch)
tree802a5e376b7704fd51b8e5bbffc876faa8bfd99c /spec
parentbec569e7940ef7df51e448e92343e2440d999173 (diff)
downloadchef-d7944227b284b6b75d638d1a2a4ea917857c3f4c.tar.gz
Allow unformatter to work when logger is not showing timestamps
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/mixin/unformatter_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/unit/mixin/unformatter_spec.rb b/spec/unit/mixin/unformatter_spec.rb
index d864e4412e..2eae0ac9bb 100644
--- a/spec/unit/mixin/unformatter_spec.rb
+++ b/spec/unit/mixin/unformatter_spec.rb
@@ -46,13 +46,11 @@ describe Chef::Mixin::Unformatter do
context "without a timestamp" do
it "sends foo to itself when the message is of severity foo" do
- pending
expect(unformatter).to receive(:foo).with(message)
unformatter.write("foo: #{message}")
end
it "sends foo to itself when the message is of severity FOO" do
- pending
expect(unformatter).to receive(:foo).with(message)
unformatter.write("FOO: #{message}")
end