mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-18 04:07:05 +02:00
9 lines
272 B
Ruby
9 lines
272 B
Ruby
FactoryGirl.define do
|
|
factory :fluentd do
|
|
variant "fluentd"
|
|
log_file (Rails.root + "tmp/fluentd-test/fluentd.log").to_s
|
|
pid_file (Rails.root + "tmp/fluentd-test/fluentd.pid").to_s
|
|
config_file (Rails.root + "tmp/fluentd-test/fluentd.conf").to_s
|
|
end
|
|
end
|