mirror of
https://github.com/fluent/fluentd-ui.git
synced 2026-05-07 11:56:11 +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>
7 lines
99 B
Ruby
7 lines
99 B
Ruby
FactoryBot.define do
|
|
factory :user do
|
|
name { "admin" }
|
|
password { "changeme" }
|
|
end
|
|
end
|