spec/datadog/notifications/config_spec.rb in datadog-notifications-0.6.2 vs spec/datadog/notifications/config_spec.rb in datadog-notifications-0.6.3

- old
+ new

@@ -1,9 +1,8 @@ require 'spec_helper' describe Datadog::Notifications::Config do - it 'should be connect!' do subject.reporter = Mock::Reporter subject.hostname = 'test.host' subject.tags = ['custom:tag'] @@ -30,7 +29,6 @@ it 'should instantiate plugins on use' do subject.use Datadog::Notifications::Plugins::ActionController expect(subject.plugins.size).to eq(1) expect(subject.plugins.first).to be_instance_of(Datadog::Notifications::Plugins::ActionController) end - end