Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'feature/7231' into develop
Browse files Browse the repository at this point in the history
Close #7231
  • Loading branch information
weierophinney committed Feb 25, 2015
2 parents 66db905 + da39803 commit 8680aba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/ZendTest/View/Helper/Navigation/BreadcrumbsTest.php
Expand Up @@ -173,6 +173,10 @@ public function testTranslationUsingZendTranslate()

public function testTranslationUsingZendTranslateAndCustomTextDomain()
{
if (!extension_loaded('intl')) {
$this->markTestSkipped('ext/intl not enabled');
}

$this->_helper->setTranslator($this->_getTranslatorWithTextDomain());

$expected = $this->_getExpected('bc/textdomain.html');
Expand Down
4 changes: 4 additions & 0 deletions tests/ZendTest/View/Helper/Navigation/MenuTest.php
Expand Up @@ -228,6 +228,10 @@ public function testTranslationUsingZendTranslate()

public function testTranslationUsingZendTranslateWithTextDomain()
{
if (!extension_loaded('intl')) {
$this->markTestSkipped('ext/intl not enabled');
}

$translator = $this->_getTranslatorWithTextDomain();
$this->_helper->setTranslator($translator);

Expand Down

0 comments on commit 8680aba

Please sign in to comment.