Skip to content

Commit

Permalink
Add tests for #6879
Browse files Browse the repository at this point in the history
I wasn't able to reproduce the issue the reporter had, but we have more
robust tests now.
  • Loading branch information
markstory committed Jul 7, 2015
1 parent 5b31eff commit 4102961
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/Cake/Test/Case/Utility/InflectorTest.php
Expand Up @@ -287,6 +287,9 @@ public function testInflectingPlurals() {
public function testPluralizeMultiWordIrregular() {
Inflector::rules('plural', array(
'irregular' => array(
'mytable1' => 'mytables1',
'mytable2' => 'mytables2',
'mytable1_mytable2' => 'mytables1_mytables2',
'pregunta_frecuente' => 'preguntas_frecuentes',
'categoria_pregunta_frecuente' => 'categorias_preguntas_frecuentes',
)
Expand All @@ -300,6 +303,10 @@ public function testPluralizeMultiWordIrregular() {
'faq_categorias_preguntas_frecuentes',
Inflector::pluralize('faq_categoria_pregunta_frecuente')
);
$this->assertEquals('mytables1', Inflector::pluralize('mytable1'));
$this->assertEquals('mytables2', Inflector::pluralize('mytable2'));
$this->assertEquals('mytables1_mytables2', Inflector::pluralize('mytable1_mytable2'));
$this->assertEquals('mytables1_mytables2', Inflector::tableize('Mytable1Mytable2'));
}

/**
Expand Down

0 comments on commit 4102961

Please sign in to comment.