Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-08-28 18:15:59 +0300
committerJoas Schilling <coding@schilljs.com>2020-08-28 21:39:37 +0300
commitd18ee78454c0d1bfbfec5772aac06460ae589947 (patch)
tree0649341dd510c62ab49d33b7b8927387a963871d /tests
parentfffb6278444e97b087955e903128a21701bc3b31 (diff)
Allow wildcards in email domains
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Integration/Service/RegistrationServiceTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Integration/Service/RegistrationServiceTest.php b/tests/Integration/Service/RegistrationServiceTest.php
index 00413bf..0292ff6 100644
--- a/tests/Integration/Service/RegistrationServiceTest.php
+++ b/tests/Integration/Service/RegistrationServiceTest.php
@@ -110,6 +110,8 @@ class RegistrationServiceTest extends TestCase {
['aaaa@example.com', 'example.com'],
['aaaa@example.com', 'eXample.com'],
['aaaa@eXample.com', 'example.com'],
+ ['aaaa@cloud.example.com', '*.example.com'],
+ ['aaaa@cloud.example.com', 'cloud.example.*'],
];
}