mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
11 lines
277 B
Text
11 lines
277 B
Text
# encoding: utf-8
|
|
require "logstash/devutils/rspec/spec_helper"
|
|
require "logstash/inputs/<%= plugin_name %>"
|
|
|
|
describe LogStash::Inputs::<%= classify(plugin_name) %> do
|
|
|
|
it_behaves_like "an interruptible input plugin" do
|
|
let(:config) { { "interval" => 100 } }
|
|
end
|
|
|
|
end
|