2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-28 16:56:44 -04:00
|
|
|
Fabricator(:watched_word) do
|
2017-07-27 21:20:09 -04:00
|
|
|
word { sequence(:word) { |i| "word#{i}" } }
|
2020-04-22 14:49:53 -04:00
|
|
|
action WatchedWord.actions[:block]
|
2017-06-28 16:56:44 -04:00
|
|
|
end
|