fluentd-ui/test/system/fluentd/setting/out_stdout_test.rb
Kenji Okimoto a2f0a29b54
Add test/system/fluentd/setting/*_test.rb
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-08-02 11:13:34 +09:00

16 lines
329 B
Ruby

require "application_system_test_case"
require "fluent/plugin/buf_file"
class OutStdoutTest < ApplicationSystemTestCase
include ConfigurableDaemonSettings
setup do
login_with(FactoryBot.build(:user))
@type = "out_stdout"
@form_name = "pattern"
@form_value = "stdout.**"
@daemon = stub_daemon
end
end