diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-12-12 04:38:56 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-12-12 04:38:56 -0600 |
commit | a8713ee8b73ef63dab45c3c4db949dbfc49a6381 (patch) | |
tree | 51bc07def409119d246bbbcf4e123ebc0572470a /spec | |
parent | 90373b7f3190e86882e764d9cf595f7345a97245 (diff) |
add ability for post authors to kick jerks out of their threads
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/conversation_kick_fabricator.rb | 4 | ||||
-rw-r--r-- | spec/models/conversation_kick_spec.rb | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/spec/fabricators/conversation_kick_fabricator.rb b/spec/fabricators/conversation_kick_fabricator.rb new file mode 100644 index 000000000..ba321212d --- /dev/null +++ b/spec/fabricators/conversation_kick_fabricator.rb @@ -0,0 +1,4 @@ +Fabricator(:conversation_kick) do + account nil + conversation nil +end diff --git a/spec/models/conversation_kick_spec.rb b/spec/models/conversation_kick_spec.rb new file mode 100644 index 000000000..942d14afd --- /dev/null +++ b/spec/models/conversation_kick_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe ConversationKick, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end |