* Bump factory_bot_rails from 4.10.0 to 4.11.0 Bumps [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) from 4.10.0 to 4.11.0. - [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases) - [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/master/NEWS) - [Commits](https://github.com/thoughtbot/factory_bot_rails/compare/v4.10.0...v4.11.0) Signed-off-by: dependabot[bot] <support@dependabot.com> * Update factories to always use blocks
7 lines
188 B
Ruby
7 lines
188 B
Ruby
FactoryBot.define do
|
|
factory :block do
|
|
input_html { Faker::Hipster.paragraph(1) }
|
|
input_css { "body {color:red}" }
|
|
input_javascript { Faker::Hipster.paragraph(1) }
|
|
end
|
|
end
|