Browse Source

Remove pending spec (#9454)

Since dots are not allowed in username,
this spec is no longer needed.
pull/4/head
ysksn 5 years ago
committed by Eugen Rochko
parent
commit
57bb62d5cf
1 changed files with 0 additions and 8 deletions
  1. +0
    -8
      spec/validators/unique_username_validator_spec.rb

+ 0
- 8
spec/validators/unique_username_validator_spec.rb View 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))

Loading…
Cancel
Save