logstash-output-jdbc/spec/outputs/jdbc_spec.rb

12 lines
301 B
Ruby
Raw Normal View History

2016-07-13 16:40:35 +00:00
require_relative '../jdbc_spec_helper'
describe LogStash::Outputs::Jdbc do
2016-04-11 17:11:52 +00:00
context 'when initializing' do
it 'shouldn\'t register without a config' do
2016-07-13 16:40:35 +00:00
expect do
LogStash::Plugin.lookup('output', 'jdbc').new
end.to raise_error(LogStash::ConfigurationError)
2016-04-11 17:11:52 +00:00
end
2015-11-22 23:19:29 +00:00
end
end