about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-07-15 13:34:05 -0500
committermultiple creatures <dev@multiple-creature.party>2019-07-15 14:12:24 -0500
commitcf3ec71aa564c7fe47ec79f8dd5f14e3bce0b85c (patch)
tree49a3356c4177157b377aeca223a7d1c1e2e3dc17 /spec
parent0a5eba734e6aa6a6e7e8f64b022af8ea129c9f5d (diff)
local visibility scope, chat scope+tags, unlisted tags
Diffstat (limited to 'spec')
-rw-r--r--spec/fabricators/chat_account_fabricator.rb2
-rw-r--r--spec/models/chat_account_spec.rb5
2 files changed, 7 insertions, 0 deletions
diff --git a/spec/fabricators/chat_account_fabricator.rb b/spec/fabricators/chat_account_fabricator.rb
new file mode 100644
index 000000000..23845a1d6
--- /dev/null
+++ b/spec/fabricators/chat_account_fabricator.rb
@@ -0,0 +1,2 @@
+Fabricator(:chat_account) do
+end
diff --git a/spec/models/chat_account_spec.rb b/spec/models/chat_account_spec.rb
new file mode 100644
index 000000000..bc27272e7
--- /dev/null
+++ b/spec/models/chat_account_spec.rb
@@ -0,0 +1,5 @@
+require 'rails_helper'
+
+RSpec.describe ChatAccount, type: :model do
+  pending "add some examples to (or delete) #{__FILE__}"
+end