Source

						public function testAddingUninflectedWords() {
		$this->assertEqual(Inflector::pluralize('bord'), 'bords');
		Inflector::rules('uninflected', 'bord');
		$this->assertEqual(Inflector::pluralize('bord'), 'bord');
	}