Skip to content

Commit 1a57236

Browse files
author
Felipe Zimmerle
committed
Adds verify cpf test case
1 parent 142ff76 commit 1a57236

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

operators/verifycpf.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[
2+
{
3+
"param" : "([0-9]{3}\\.){2}[0-9]{3}-[0-9]{2}",
4+
"input" : "asdf 010.817.514-60 asdf",
5+
"ret" : 1,
6+
"type" : "op",
7+
"name" : "verifycpf"
8+
},
9+
{
10+
"param" : "([0-9]{3}\\.){2}[0-9]{3}-[0-9]{2}",
11+
"input" : "asdf 010.817 asdf",
12+
"ret" : 0,
13+
"type" : "op",
14+
"name" : "verifycpf"
15+
}
16+
17+
18+
19+
]

0 commit comments

Comments
 (0)