blob: 68e70e2ead1879335a6b51029ffb75e734017227 (
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
|
<?php
require_once DOKU_INC . 'inc/init.php';
require_once DOKU_INC . 'inc/common.php';
class common_cleanText_test extends PHPUnit_Framework_TestCase {
function test_unix(){
$unix = 'one
two
three';
$this->assertEquals($unix,cleanText($unix));
}
function test_win(){
$unix = "one\ntwo\nthree";
$win = "one\r\ntwo\r\nthree";
$this->assertEquals(bin2hex($unix), '6f6e650a74776f0a7468726565');
$this->assertEquals(bin2hex($win), '6f6e650d0a74776f0d0a7468726565');
$this->assertNotEquals($unix, $win);
$this->assertEquals($unix, cleanText($win));
}
}
//Setup VIM: ex: et ts=4 :
|