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