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