aboutsummaryrefslogtreecommitdiff
path: root/mod/htmlawed/tests/tags.php
blob: b3914a9d64f40fd6b5f6bbd549b12b05eb423ba6 (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
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
 * Dupplicated tags in htmlawed
 */
class HtmLawedDuplicateTagsTest extends ElggCoreUnitTest {

    /**
     * Called before each test object.
     */
    public function __construct() {
        parent::__construct();
    }
    
    /**
     * Called before each test method.
     */
    public function setUp() {
    }
    
    /**
     * Called after each test method.
     */
    public function tearDown() {
        // do not allow SimpleTest to interpret Elgg notices as exceptions
        $this->swallowErrors();
    }
    
    /**
     * Called after each test object.
     */
    public function __destruct() {
        elgg_set_ignore_access($this->ia);
        // all __destruct() code should go above here
        parent::__destruct();
    }
    
    public function testNotDuplicateTags() {
        $filter_html = '<ul><li>item</li></ul>';    
        set_input('test', $filter_html);
        
        $expected = $filter_html;
        $result = get_input('test');
        $this->assertEqual($result, $expected);
    }
}