diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-15 08:08:01 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-15 08:08:01 +0100 |
commit | dd63b0fec2b46de11e2f21ab7369ee66a446698b (patch) | |
tree | 17f82a8894351430c232543e14abc2a80d843bca /tests/codeigniter/helpers | |
parent | 7ed4c4ab0551411cc6927d76d55c037d87d65c17 (diff) | |
parent | 2a6a6162ff6de8c2114c50254a5046ee6822c5dc (diff) |
Merge pull request #1190 from tiyowan/inflection-helper-tests
Change unit tests to provide one hundred percent code coverage
Diffstat (limited to 'tests/codeigniter/helpers')
-rw-r--r-- | tests/codeigniter/helpers/inflector_helper_test.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/codeigniter/helpers/inflector_helper_test.php b/tests/codeigniter/helpers/inflector_helper_test.php index e476f6dc8..472e28adb 100644 --- a/tests/codeigniter/helpers/inflector_helper_test.php +++ b/tests/codeigniter/helpers/inflector_helper_test.php @@ -11,7 +11,8 @@ class Inflector_helper_test extends CI_TestCase { 'tellies' => 'telly', 'smellies' => 'smelly', 'abjectnesses' => 'abjectness', - 'smells' => 'smell' + 'smells' => 'smell', + 'equipment' => 'equipment' ); foreach ($strs as $str => $expect) @@ -29,7 +30,8 @@ class Inflector_helper_test extends CI_TestCase { 'smelly' => 'smellies', 'abjectness' => 'abjectnesses', // ref : http://en.wiktionary.org/wiki/abjectnesses 'smell' => 'smells', - 'witch' => 'witches' + 'witch' => 'witches', + 'equipment' => 'equipment' ); foreach ($strs as $str => $expect) |