discourse/spec/models/username_validator_spec.rb
Cyril Mougel 84191802df Extract the validation of Username format in own class to avoid
complexity in user model object
2013-02-08 12:54:47 -05:00

18 lines
555 B
Ruby

require 'spec_helper'
describe UsernameValidator do
context "#valid_format?" do
it 'returns true when username is both valid and available' do
expect(UsernameValidator.new('Available').valid_format?).to eq true
end
it 'returns true when the username is valid but not available' do
expect(UsernameValidator.new(Fabricate(:user).username).valid_format?).to eq true
end
it 'returns false when the username is not valid' do
expect(UsernameValidator.new('not valid.name').valid_format?).to eq false
end
end
end