mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-19 21:41:11 +02:00
9 lines
276 B
Ruby
9 lines
276 B
Ruby
FactoryGirl.define do
|
|
factory :fluentd do
|
|
variant "fluentd_gem"
|
|
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
|