Skip to content

Commit

Permalink
Add tests for curve<->curves
Browse files Browse the repository at this point in the history
Closes #2148
  • Loading branch information
markstory committed Oct 17, 2013
1 parent 5d15c64 commit 935a51c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Cake/Test/Case/Utility/InflectorTest.php
Expand Up @@ -121,6 +121,7 @@ public function testInflectingSingulars() {
$this->assertEquals(Inflector::singularize('archives'), 'archive');
$this->assertEquals(Inflector::singularize('briefs'), 'brief');
$this->assertEquals(Inflector::singularize('quotas'), 'quota');
$this->assertEquals(Inflector::singularize('curves'), 'curve');
$this->assertEquals(Inflector::singularize(''), '');
}

Expand Down Expand Up @@ -183,6 +184,7 @@ public function testInflectingPlurals() {
$this->assertEquals(Inflector::pluralize('objective'), 'objectives');
$this->assertEquals(Inflector::pluralize('brief'), 'briefs');
$this->assertEquals(Inflector::pluralize('quota'), 'quotas');
$this->assertEquals(Inflector::pluralize('curve'), 'curves');
$this->assertEquals(Inflector::pluralize(''), '');
}

Expand Down

0 comments on commit 935a51c

Please sign in to comment.