mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-15 10:47:06 +02:00
See also https://robots.thoughtbot.com/deprecating-static-attributes-in-factory_bot-4-11 Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
9 lines
184 B
Ruby
9 lines
184 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.define do
|
|
factory :plugin do
|
|
gem_name { "fluent-plugin-dummy" }
|
|
version { "1.2.3" }
|
|
end
|
|
end
|