about summary refs log tree commit diff
path: root/spec/models/account_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-03-04 11:12:09 -0500
committerGitHub <noreply@github.com>2023-03-04 17:12:09 +0100
commitcd99fa8cebc6efa059b4fca743d517c88f8d9686 (patch)
treec5abb6d00b2ac0245d58f017c125049be66cc04c /spec/models/account_spec.rb
parentc40d5e5a8fb02f2c603a23a1b0130b3f86a15710 (diff)
Fabricator specs (#23925)
Diffstat (limited to 'spec/models/account_spec.rb')
-rw-r--r--spec/models/account_spec.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb
index 1e5a80963..ae4e5ee32 100644
--- a/spec/models/account_spec.rb
+++ b/spec/models/account_spec.rb
@@ -704,12 +704,6 @@ RSpec.describe Account, type: :model do
   end
 
   describe 'validations' do
-    it 'has a valid fabricator' do
-      account = Fabricate.build(:account)
-      account.valid?
-      expect(account).to be_valid
-    end
-
     it 'is invalid without a username' do
       account = Fabricate.build(:account, username: nil)
       account.valid?