Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/draft-next/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,16 @@
"description": "an invalid IPv4-address-literal",
"data": "joe.bloggs@[127.0.0.300]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft2019-09/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@
"description": "two subsequent dots inside local part are not valid",
"data": "[email protected]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft2020-12/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,16 @@
"description": "an invalid IPv4-address-literal",
"data": "joe.bloggs@[127.0.0.300]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft3/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@
"description": "two subsequent dots inside local part are not valid",
"data": "[email protected]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft4/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@
"description": "two subsequent dots inside local part are not valid",
"data": "[email protected]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft6/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@
"description": "two subsequent dots inside local part are not valid",
"data": "[email protected]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
10 changes: 10 additions & 0 deletions tests/draft7/optional/format/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@
"description": "two subsequent dots inside local part are not valid",
"data": "[email protected]",
"valid": false
},
{
"description": "two email addresses is not valid",
"data": "[email protected], [email protected]",
"valid": false
},
{
"description": "full \"From\" header is invalid",
"data": "\"Winston Smith\" <[email protected]> (Records Department)",
"valid": false
}
]
}
Expand Down
Loading