Skip to content

Commit 30891ea

Browse files
committed
Adds test for new operator verifySVNR to check for Austrian social security number
1 parent 5d85f36 commit 30891ea

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

operators/verifysvnr.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]{4} ?[0-9]{6})",
4+
"input" : "asdf 1237 010180 asdf",
5+
"ret" : 1,
6+
"type" : "op",
7+
"name" : "verifysvnr"
8+
},
9+
{
10+
"param" : "([0-9]{4} ?[0-9]{6})",
11+
"input" : "asdf 0100817 asdf",
12+
"ret" : 0,
13+
"type" : "op",
14+
"name" : "verifysvnr"
15+
}
16+
17+
18+
19+
]

0 commit comments

Comments
 (0)