Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
453f1120
Commit
453f1120
authored
Feb 01, 2018
by
Andrea Spacca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added more test case
parent
faa33416
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
validation_test.go
validation/validation_test.go
+28
-0
No files found.
validation/validation_test.go
View file @
453f1120
...
...
@@ -480,12 +480,40 @@ func TestPointer(t *testing.T) {
t
.
Fatal
(
"validation should be passed"
)
}
u
=
User
{
ReqEmail
:
&
validEmail
,
Email
:
nil
,
}
valid
=
Validation
{}
b
,
err
=
valid
.
Valid
(
u
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
if
!
b
{
t
.
Fatal
(
"validation should be passed"
)
}
invalidEmail
:=
"a@a"
u
=
User
{
ReqEmail
:
&
validEmail
,
Email
:
&
invalidEmail
,
}
valid
=
Validation
{
RequiredFirst
:
true
}
b
,
err
=
valid
.
Valid
(
u
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
if
b
{
t
.
Fatal
(
"validation should not be passed"
)
}
u
=
User
{
ReqEmail
:
&
validEmail
,
Email
:
&
invalidEmail
,
}
valid
=
Validation
{}
b
,
err
=
valid
.
Valid
(
u
)
if
err
!=
nil
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment