Skip to content

Commit

Permalink
Adds unit test sharp S in Zend_Validate_Hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
froschdesign committed Sep 1, 2015
1 parent e25c9a3 commit 4db09b1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/Zend/Validate/HostnameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -527,4 +527,13 @@ public function testVermögensberaterIdns()
$validator = new Zend_Validate_Hostname();
$this->assertTrue($validator->isValid('mysite.vermögensberater'));
}

/**
* @group GH-610
*/
public function testGermanSmallLetterSharpS()
{
$validator = new Zend_Validate_Hostname();
$this->assertTrue($validator->isValid('straße.de'));
}
}

0 comments on commit 4db09b1

Please sign in to comment.