Merge pull request #1190 from tiyowan/inflection-helper-tests
Change unit tests to provide one hundred percent code coverage
diff --git a/tests/codeigniter/helpers/inflector_helper_test.php b/tests/codeigniter/helpers/inflector_helper_test.php
index e476f6d..472e28a 100644
--- a/tests/codeigniter/helpers/inflector_helper_test.php
+++ b/tests/codeigniter/helpers/inflector_helper_test.php
@@ -11,7 +11,8 @@
'tellies' => 'telly',
'smellies' => 'smelly',
'abjectnesses' => 'abjectness',
- 'smells' => 'smell'
+ 'smells' => 'smell',
+ 'equipment' => 'equipment'
);
foreach ($strs as $str => $expect)
@@ -29,7 +30,8 @@
'smelly' => 'smellies',
'abjectness' => 'abjectnesses', // ref : http://en.wiktionary.org/wiki/abjectnesses
'smell' => 'smells',
- 'witch' => 'witches'
+ 'witch' => 'witches',
+ 'equipment' => 'equipment'
);
foreach ($strs as $str => $expect)