about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorJenkins <jenkins@jenkins.ninjawedding.org>2017-11-24 01:17:20 +0000
committerJenkins <jenkins@jenkins.ninjawedding.org>2017-11-24 01:17:20 +0000
commit167fe2ab08288ce286f5c7660ff0ed587b65b988 (patch)
tree1a4c7d23cb3dd6993c0ce57a637a161e3405dba5 /spec
parentfaad820458401b5a01f24d4da4bf2acf59ef440d (diff)
parente84fecb7e97851ed56f4d954e2d68128bb87da37 (diff)
Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master
Diffstat (limited to 'spec')
-rw-r--r--spec/fabricators/admin_action_log_fabricator.rb5
-rw-r--r--spec/models/admin/action_log_spec.rb5
2 files changed, 10 insertions, 0 deletions
diff --git a/spec/fabricators/admin_action_log_fabricator.rb b/spec/fabricators/admin_action_log_fabricator.rb
new file mode 100644
index 000000000..2f44e953d
--- /dev/null
+++ b/spec/fabricators/admin_action_log_fabricator.rb
@@ -0,0 +1,5 @@
+Fabricator('Admin::ActionLog') do
+  account nil
+  action  "MyString"
+  target  nil
+end
diff --git a/spec/models/admin/action_log_spec.rb b/spec/models/admin/action_log_spec.rb
new file mode 100644
index 000000000..59206a36b
--- /dev/null
+++ b/spec/models/admin/action_log_spec.rb
@@ -0,0 +1,5 @@
+require 'rails_helper'
+
+RSpec.describe Admin::ActionLog, type: :model do
+
+end