File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class User < ApplicationRecord
23
23
validates :username ,
24
24
presence : true ,
25
25
uniqueness : { case_sensitive : false } ,
26
- format : { with : /\A [[:alnum:]]{3,} \z / }
26
+ format : { with : /\A [[:alnum:]]+ \z / }
27
27
28
28
validates :email ,
29
29
presence : true ,
Original file line number Diff line number Diff line change 8
8
expect ( build ( :user , username : nil ) ) . not_to be_valid
9
9
end
10
10
11
- it "doesn't allow single-character usernames" do
12
- expect ( build ( :user , username : "a" ) ) . not_to be_valid
11
+ it "allows single-character usernames" do
12
+ expect ( build ( :user , username : "a" ) ) . to be_valid
13
13
end
14
14
15
- it "doesn't allow two-character usernames" do
16
- expect ( build ( :user , username : "ab" ) ) . not_to be_valid
15
+ it "allows two-character usernames" do
16
+ expect ( build ( :user , username : "ab" ) ) . to be_valid
17
17
end
18
18
19
19
it "allow three-character usernames" do
You can’t perform that action at this time.
0 commit comments