about summary refs log tree commit diff
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-08 00:38:50 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-07 16:38:50 +0100
commit57bb62d5cfe1b269ccfc82c0d2fd73fbf1252a3d (patch)
treec30752e647e1f79812ea7f9203c6306fe2069756
parent51cbd045dab531725b448311ea52d0aec215a8f8 (diff)
Remove pending spec (#9454)
Since dots are not allowed in username,
this spec is no longer needed.
-rw-r--r--spec/validators/unique_username_validator_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/validators/unique_username_validator_spec.rb b/spec/validators/unique_username_validator_spec.rb
index b9d773bed..c2e2eedf4 100644
--- a/spec/validators/unique_username_validator_spec.rb
+++ b/spec/validators/unique_username_validator_spec.rb
@@ -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))