blob: b5384eaef59090e0339ee427f1d3c6a006145d9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
require_once(BASEPATH.'helpers/url_helper.php');
class Url_helper_test extends CI_TestCase
{
public function test_url_title()
{
$words = array(
'foo bar /' => 'foo-bar',
'\ testing 12' => 'testing-12'
);
foreach ($words as $in => $out)
{
$this->assertEquals($out, url_title($in, 'dash', TRUE));
}
}
// --------------------------------------------------------------------
public function test_url_title_extra_dashes()
{
$words = array(
'_foo bar_' => 'foo_bar',
'_What\'s wrong with CSS?_' => 'Whats_wrong_with_CSS'
);
foreach ($words as $in => $out)
{
$this->assertEquals($out, url_title($in, 'underscore'));
}
}
}
|