Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 4db09b1

Browse files
committed
Adds unit test sharp S in Zend_Validate_Hostname
See zendframework#610
1 parent e25c9a3 commit 4db09b1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/Zend/Validate/HostnameTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,4 +527,13 @@ public function testVermögensberaterIdns()
527527
$validator = new Zend_Validate_Hostname();
528528
$this->assertTrue($validator->isValid('mysite.vermögensberater'));
529529
}
530+
531+
/**
532+
* @group GH-610
533+
*/
534+
public function testGermanSmallLetterSharpS()
535+
{
536+
$validator = new Zend_Validate_Hostname();
537+
$this->assertTrue($validator->isValid('straße.de'));
538+
}
530539
}

0 commit comments

Comments
 (0)