spec/teabag/runner_spec.rb in teabag-0.4.6 vs spec/teabag/runner_spec.rb in teabag-0.5.0

- old
+ new

@@ -21,9 +21,13 @@ end end Teabag.configuration.formatters = "dot, xml" expect(subject.formatters[0]).to be_a(Teabag::Formatters::DotFormatter) expect(subject.formatters[1]).to be_a(Teabag::Formatters::XmlFormatter) + + Teabag.configuration.formatters = "dot,xml" + expect(subject.formatters[0]).to be_a(Teabag::Formatters::DotFormatter) + expect(subject.formatters[1]).to be_a(Teabag::Formatters::XmlFormatter) end end describe "#process" do