blob: e59875e4ac38b65013a68e1cc3933cbc35a81237 [file] [log] [blame]
<?php
require_once(BASEPATH.'helpers/inflector_helper.php');
class Inflector_helper_test extends CI_TestCase {
public function testSingular()
{
$strs = array(
'tellies' => 'telly',
'smellies' => 'smelly',
'abjectnesses' => 'abjectness',
'smells' => 'smell'
);
foreach ($strs as $str => $expect)
{
$this->assertEquals($expect, singular($str));
}
}
// --------------------------------------------------------------------
public function testPlural()
{
$strs = array(
'telly' => 'tellies',
'smelly' => 'smellies',
'abjectness' => 'abjectness',
'smell' => 'smells',
'witch' => 'witches'
);
foreach ($strs as $str => $expect)
{
$this->assertEquals($expect, plural($str));
}
}
// --------------------------------------------------------------------
public function testCamelize()
{
$strs = array(
'this is the string' => 'thisIsTheString',
'this is another one' => 'thisIsAnotherOne',
'i-am-playing-a-trick' => 'i-am-playing-a-trick',
'what_do_you_think-yo?' => 'whatDoYouThink-yo?',
);
foreach ($strs as $str => $expect)
{
$this->assertEquals($expect, camelize($str));
}
}
// --------------------------------------------------------------------
public function testUnderscore()
{
$strs = array(
'this is the string' => 'this_is_the_string',
'this is another one' => 'this_is_another_one',
'i-am-playing-a-trick' => 'i-am-playing-a-trick',
'what_do_you_think-yo?' => 'what_do_you_think-yo?',
);
foreach ($strs as $str => $expect)
{
$this->assertEquals($expect, underscore($str));
}
}
// --------------------------------------------------------------------
public function testHumanize()
{
$strs = array(
'this_is_the_string' => 'This Is The String',
'this_is_another_one' => 'This Is Another One',
'i-am-playing-a-trick' => 'I-am-playing-a-trick',
'what_do_you_think-yo?' => 'What Do You Think-yo?',
);
foreach ($strs as $str => $expect)
{
$this->assertEquals($expect, humanize($str));
}
}
}