mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 17:27:09 +02:00
14 lines
288 B
Ruby
14 lines
288 B
Ruby
require "application_system_test_case"
|
|
|
|
class InForwardTest < ApplicationSystemTestCase
|
|
include ConfigurableDaemonSettings
|
|
|
|
setup do
|
|
login_with(FactoryBot.build(:user))
|
|
@type = "in_forward"
|
|
@form_name = "port"
|
|
@form_value = "12345"
|
|
@daemon = stub_daemon
|
|
end
|
|
end
|