]> cat aescling's git repositories - mastodon.git/commitdiff
Remove pending spec (#9454)
authorysksn <bluewhale1982@gmail.com>
Fri, 7 Dec 2018 15:38:50 +0000 (00:38 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 7 Dec 2018 15:38:50 +0000 (16:38 +0100)
Since dots are not allowed in username,
this spec is no longer needed.

spec/validators/unique_username_validator_spec.rb

index b9d773bed3bc1da46b9cc7a20f8ede99c7780eb1..c2e2eedf41f26c5b53dc623eca69eb3d1b23aafa 100644 (file)
@@ -15,14 +15,6 @@ describe UniqueUsernameValidator do
       expect(account).to be_valid
     end
 
-    it 'adds an error when the username is already used with ignoring dots' do
-      pending 'allowing dots in username is still in development'
-      Fabricate(:account, username: 'abcd.ef')
-      account = double(username: 'ab.cdef', persisted?: false, errors: double(add: nil))
-      subject.validate(account)
-      expect(account.errors).to have_received(:add)
-    end
-
     it 'adds an error when the username is already used with ignoring cases' do
       Fabricate(:account, username: 'ABCdef')
       account = double(username: 'abcDEF', persisted?: false, errors: double(add: nil))