summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/inflector_helper_test.php
diff options
context:
space:
mode:
authorTaufan Aditya <toopay@taufanaditya.com>2012-03-10 23:43:45 +0100
committerTaufan Aditya <toopay@taufanaditya.com>2012-03-10 23:43:45 +0100
commit8749bc7e836c196dfef37d3b7b5a67736a15092c (patch)
treeeb647bc246487f444ea1ffd4e24317ab0200bf30 /tests/codeigniter/helpers/inflector_helper_test.php
parente40c763bf969acbaa7c4c61be50f01e870062080 (diff)
Fix incomplete and skipped test
Diffstat (limited to 'tests/codeigniter/helpers/inflector_helper_test.php')
-rw-r--r--tests/codeigniter/helpers/inflector_helper_test.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/codeigniter/helpers/inflector_helper_test.php b/tests/codeigniter/helpers/inflector_helper_test.php
index ef1f54afc..e476f6dc8 100644
--- a/tests/codeigniter/helpers/inflector_helper_test.php
+++ b/tests/codeigniter/helpers/inflector_helper_test.php
@@ -24,14 +24,10 @@ class Inflector_helper_test extends CI_TestCase {
public function test_plural()
{
- $this->markTestSkipped(
- 'abjectness is breaking. SKipping for the time being.'
- );
-
$strs = array(
'telly' => 'tellies',
'smelly' => 'smellies',
- 'abjectness' => 'abjectness',
+ 'abjectness' => 'abjectnesses', // ref : http://en.wiktionary.org/wiki/abjectnesses
'smell' => 'smells',
'witch' => 'witches'
);