diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/account_pin_fabricator.rb | 4 | ||||
-rw-r--r-- | spec/models/account_pin_spec.rb | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/spec/fabricators/account_pin_fabricator.rb b/spec/fabricators/account_pin_fabricator.rb new file mode 100644 index 000000000..c0f8b8afb --- /dev/null +++ b/spec/fabricators/account_pin_fabricator.rb @@ -0,0 +1,4 @@ +Fabricator(:account_pin) do + account nil + target_account nil +end diff --git a/spec/models/account_pin_spec.rb b/spec/models/account_pin_spec.rb new file mode 100644 index 000000000..4f226b127 --- /dev/null +++ b/spec/models/account_pin_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe AccountPin, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end |