diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-06 17:36:11 +0100 |
---|---|---|
committer | Reverite <github@reverite.sh> | 2018-12-06 15:59:26 -0800 |
commit | ee5213093a084c2eb5fa97fb4bdea6019dda5cf5 (patch) | |
tree | fedcca21d531082c671750f2d86c43e2895f91ef /spec | |
parent | a78e3f2206ddaeeb3e6f1c23e4b524af29e92b04 (diff) |
Add profile directory (#9427)
Fix #5578
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/account_tag_stat_fabricator.rb | 3 | ||||
-rw-r--r-- | spec/models/account_tag_stat_spec.rb | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/spec/fabricators/account_tag_stat_fabricator.rb b/spec/fabricators/account_tag_stat_fabricator.rb new file mode 100644 index 000000000..9edb550be --- /dev/null +++ b/spec/fabricators/account_tag_stat_fabricator.rb @@ -0,0 +1,3 @@ +Fabricator(:account_tag_stat) do + accounts_count "" +end diff --git a/spec/models/account_tag_stat_spec.rb b/spec/models/account_tag_stat_spec.rb new file mode 100644 index 000000000..f1ebc5578 --- /dev/null +++ b/spec/models/account_tag_stat_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe AccountTagStat, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end |